Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.01 KB

README.md

File metadata and controls

45 lines (37 loc) · 1.01 KB

DS-A

Data Structures and Algorithms

Go implementations

  • Heap
    • Binary heap
    • Max heap
    • Min heap
  • Sorting
    • Insertion sort
    • Heap sort
    • Merge sort
    • Shell sort
  • Tree
    • DFS - Depth First Search
      • In-order
      • Pre-order
      • Post-order
    • BFS - Breadth First Search
  • K-array tree
    • DFS - Depth First Search
      • In-order
      • Pre-order
      • Post-order
    • BFS - Breadth First Search
  • Trie
    • Routes resolution

Java implementations

  • Dijkstra's Algorithm
    • Shortest path
  • Trie
    • Routes resolution
  • Triplicate Number
    • eulernet
    • Find the triplicate number in an array

Automated Tests

Go Tests

Java Tests