Skip to content

KamalKant-Tech/learn-DSA-GO

Repository files navigation

learn-DSA-GO

Learn data structure algorithms with go

Data Structures available in this Repo are:

  1. Array
  2. Heap
  3. Priority Queue
  4. Linked List
  5. Tree
  6. Maps

DSA Techniques to Solve the Problem:

  1. Two Pointers Approach
  2. Heap Sorts
  3. Quick Sort
  4. Merge Sort
  5. Selection Sort
  6. Bubble Sort
  7. Recursion
  8. Dynamic Programming

Array

Easy: LeetCode Problems

Medium: LeetCode Problems

Heap

LeetCode Problems:

Priority Queue

LeetCode Problems:

Recursion

Key Points to implement Recurrence:

  1. Try to represent the problem in terms of index
  2. Do all possible stuff to the index according to the problem statement
  3. Sum of all stuffs -> count all ways

For Eg:

  1. Find the Minimum of something -> Min( of all stuffs)
  2. Find the Maximum of something -> Max(of all stuffs)

LeetCode Problems: