theoryofprogramming
theoryofprogramming copied to clipboard
Code repository for codes in the educational website Theory of Programming
### 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. *...
### 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...
### 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. *...
### 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/)...
### 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...
### 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. *...
### 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 -...
### Issue Description * Need the C++ implementation of Jump Search algorithm. For this issue please provide the non-optimised version of Jump Search algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2016/11/10/jump-search-algorithm/) *...
### Issue Description * Need the C++ implementation of Depth First Search algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2014/12/26/depth-first-search-algorithm/) * Permitted languages - C++ ### Guidelines * Your code will be...
### Issue Description * Need the C++ implementation of Kadane's algorithm. * [Corresponding post on website](http://theoryofprogramming.com/2016/10/21/dynamic-programming-kadanes-algorithm/) * Permitted languages - C++ ### Guidelines * Your code will be live on...