Vamsi Sangam

Results 13 issues of Vamsi Sangam

### Issue Description * Need the C# implementation of Snakes and Ladders game code. Must use BFS. * [Corresponding post on website](http://theoryofprogramming.com/2014/12/25/snakes-and-ladders-game-code/) * Permitted languages - C# ### Guidelines *...

C#

### Issue Description * Need the C++ implementation of Merge sort algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2015/01/29/merge-sort-algorithm/) * Permitted languages - C++ ### Guidelines * Your code will be live...

C++

### Issue Description * Need the C++ implementation of the Edit distance algorithm. For this issue we need the non-optimised version, the O(|M| |N|) space complexity algorithm. * [Corresponding post...

C++

### Issue Description * Need the Java implementation of Segment Tree data structure. Required operations would be range sum query, update operation and a traversal to print the tree. *...

Java

### Issue Description * Need the Java implementation of Bellman Ford algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2015/01/19/bellman-ford-algorithm/) * Permitted languages - Java ### Guidelines * Your code will be live...

Java

### Issue Description * Need the C++ implementation of Segment tree data structure. Required operations would be range sum query, update operation and a traversal to print the tree. *...

C++

### Issue Description * Need the C++ implementation of compressed trie tree data structure. Required operations are insert and search for the existence of words. * [Corresponding post on website](http://theoryofprogramming.com/2016/11/15/compressed-trie-tree/)...

C++

### Issue Description * Need the C++ implmentation of Bellman Ford Algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2015/01/19/bellman-ford-algorithm/) * Permitted languages - C++ ### Guidelines * Your code will be live...

C++

### Issue Description * Impement the compressed trie tree data structure in C. Required operations would be to insert and search for existence of words. ```startsWith``` opertion is optional. *...

C

### Issue Description * Implement a trie tree in C. Required operations would be insert and search for existence of words. * [Corresponding post on website](http://theoryofprogramming.com/2015/01/16/trie-tree-implementation/) * Permitted languages -...

C