theoryofprogramming icon indicating copy to clipboard operation
theoryofprogramming copied to clipboard

Code repository for codes in the educational website Theory of Programming

Results 20 theoryofprogramming issues
Sort by recently updated
recently updated
newest added

### 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

### 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/) *...

C++

### 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...

C++

### 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...

C++