Data-Structures-and-Algorithms
Data-Structures-and-Algorithms copied to clipboard
An Open-Source repository that contains all the Data Structures and Algorithms concepts and their implementation in several ways, programming questions and Interview questions. The main aim of this re...
Added Search in BST Solution in (Data Structures > Trees > Leetcode Questions > Binary Search Tree Questions > Search in BST)
This PR contains python implementation for the following items: - Kruskal's Algo for MST. - Prim's Algo for MST (Both Brute and Efficient Approaches). - Leetcode problem #743 Network Delay...
Programming languages, as these solution can help new Devs learn these new but quite useful languages
I have noticed that the repository does not have a linked list folder, so I created a linked list folder and wrote a solution for two Leetcode problems, one easy...
Implemnted the Trie data-struct in javascript.
implementation of linked list basic operation in Javascript
Hello, @priyamm, I've created a pull request by adding the js version of the linked-list implementation. Please check and merge it. let me know if you encounter any issues with...
There is Kahn's algorithm which can be used to implement the topological ordering or sort. It uses BFS concept and there is only dfs solution discussed. I am creating a...