Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 492 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 492 Bytes

data-structure-csharp

Includes

  • Array -- Heap Sort -- QuickSort -- Identifying Kth Highest/Lowest from an array -- Linear Search -- Binary Search -- Merge two sorted arrays
  • Queue implementation using -- Circular array -- Circular Linked List -- Two stacks
  • Tree Traversal -- InOrder -- PreOrder -- PostOrder -- ReverseInOrder
  • Trie implementation using Nested Dictionary
  • Graph implementation using Dictionary of Dictionary -- Depth First Traversal -- Breadth First Traversal