Skip to content

dev-xero/java-algorithms-exercise-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Algorithms Exercise Practice

☕ Exercise solutions for chapter 1.1 written in Java

Algorithms Implemented

  1. isBetweenZeroAndOne()
  2. toBinaryString()
  3. printTwoDmBooleanArray()
  4. printTwoDmIntArray()
  5. printIntArray()
  6. matrixTransposition()
  7. lg()
  8. Fibonacci.Fib()
  9. Fibonnaci.FastFib()
  10. fact()
  11. binarySearch()
  12. bruteForceSearch()

Code Examples

We are asked in exercise (1.1.19) to improve the fib method to use some sort of cache. This one is particularly interesting because it runs in O(1) time provided that the cache contains the previous two sequences. Generating the previous sequences is done using loops.

    // dynamic programming and memoization
    public static long FastFib(int N, HashMap<Integer, Long> cache) {
        if (N == 0) {
            cache.put(N, 0L);
            return 0;
        }

        if (N == 1) {
            cache.put(N, 1L);
            return 1;
        }

        cache.put(N, cache.get(N - 2) + cache.get(N - 1));
        return cache.get(N);
    }

Python Implementation

I've implemented the same methods but in Python over here, if you're interested.

About

☕ Exercise solutions for chapter 1.1 written in Java

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy