Skip to content

XeroHero/Common-Sense-Data-Structures-and-Algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Common-Sense Data Structures and Algorithms

Index

Total Course Lenght: 15 Weeks

  1. Arrays (1 Week) ✅
  2. Sorting Algorithms (2 Weeks) ❌
  • Bubble Sort ✅ Implementation in Java of a generic Bubble Sort Algorithm for Sorting an Integer Array

    private static void bubbleSort(int[] arr) {
        int n = arr.length;
        for(int i = 0; i < n; i++){
            for (int j = 0; j < n; j++){
                if(arr[j] > arr[j+1]){
                    int tmp = arr[j];
                    arr[j] = arr[j+1];
                    arr[j+1] = tmp;
                }
            }
        }
    
  • Quick Sort ❌

  • Merge Sort ❌

  1. Hash Tables (1.5 Weeks) ❌
  2. Stacks & Queues (1.5 Weeks) ❌
  • Stacks ❌
  • Queues ❌
  1. Recursion (2 Weeks) ❌
  2. Node-based Structures (2 Weeks) ❌
  3. Binary Trees (2 Weeks) ❌
  4. Graphs (3 Weeks) ❌

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages