├── Graph ├── README.md ├── adjacency-list.c ├── adjacency-matrix │ ├── README.md │ ├── adjacency-matrix-directed-weighted.c │ ├── adjacency-matrix-directed.c │ ├── adjacency-matrix-undirected-weighted.c │ └── adjacency-matrix-undirected.c ├── breadth-first-search │ ├── BFS-connected.c │ ├── BFS-shortest-path.c │ ├── BFS-tree-edges.c │ ├── BFS-undirected.c │ ├── BFS.c │ └── README.md ├── depth-first-search │ ├── DFS-rec-classify-edges-directed.c │ ├── DFS-rec-classify-edges-undirected.c │ ├── DFS-rec-cyclic.c │ ├── DFS-rec-time.c │ ├── DFS-rec-undirected-cyclic.c │ ├── DFS-rec-undirected.c │ ├── DFS-rec.c │ ├── DFS-tree-edges.c │ ├── DFS.c │ └── README.md ├── dijkstras-algorithm.C ├── kruskals-algorithm.c ├── path-matrix-by-powers-adj.c ├── prims-algorithm.c └── warshalls-algorithm.c ├── README.md └── Trees ├── README.md ├── avl-tree.C ├── b-tree.c ├── binary-search-tree-recursive.C ├── binary-serach-tree-non-recursive.c ├── binary-tree.C ├── expression-tree.C └── in-threaded-binary-search-tree.C /Graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/README.md -------------------------------------------------------------------------------- /Graph/adjacency-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-list.c -------------------------------------------------------------------------------- /Graph/adjacency-matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-matrix/README.md -------------------------------------------------------------------------------- /Graph/adjacency-matrix/adjacency-matrix-directed-weighted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-matrix/adjacency-matrix-directed-weighted.c -------------------------------------------------------------------------------- /Graph/adjacency-matrix/adjacency-matrix-directed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-matrix/adjacency-matrix-directed.c -------------------------------------------------------------------------------- /Graph/adjacency-matrix/adjacency-matrix-undirected-weighted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-matrix/adjacency-matrix-undirected-weighted.c -------------------------------------------------------------------------------- /Graph/adjacency-matrix/adjacency-matrix-undirected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/adjacency-matrix/adjacency-matrix-undirected.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/BFS-connected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/BFS-connected.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/BFS-shortest-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/BFS-shortest-path.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/BFS-tree-edges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/BFS-tree-edges.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/BFS-undirected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/BFS-undirected.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/BFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/BFS.c -------------------------------------------------------------------------------- /Graph/breadth-first-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/breadth-first-search/README.md -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-classify-edges-directed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-classify-edges-directed.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-classify-edges-undirected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-classify-edges-undirected.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-cyclic.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-time.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-undirected-cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-undirected-cyclic.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec-undirected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec-undirected.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-rec.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS-tree-edges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS-tree-edges.c -------------------------------------------------------------------------------- /Graph/depth-first-search/DFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/DFS.c -------------------------------------------------------------------------------- /Graph/depth-first-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/depth-first-search/README.md -------------------------------------------------------------------------------- /Graph/dijkstras-algorithm.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/dijkstras-algorithm.C -------------------------------------------------------------------------------- /Graph/kruskals-algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/kruskals-algorithm.c -------------------------------------------------------------------------------- /Graph/path-matrix-by-powers-adj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/path-matrix-by-powers-adj.c -------------------------------------------------------------------------------- /Graph/prims-algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/prims-algorithm.c -------------------------------------------------------------------------------- /Graph/warshalls-algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Graph/warshalls-algorithm.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/README.md -------------------------------------------------------------------------------- /Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/README.md -------------------------------------------------------------------------------- /Trees/avl-tree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/avl-tree.C -------------------------------------------------------------------------------- /Trees/b-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/b-tree.c -------------------------------------------------------------------------------- /Trees/binary-search-tree-recursive.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/binary-search-tree-recursive.C -------------------------------------------------------------------------------- /Trees/binary-serach-tree-non-recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/binary-serach-tree-non-recursive.c -------------------------------------------------------------------------------- /Trees/binary-tree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/binary-tree.C -------------------------------------------------------------------------------- /Trees/expression-tree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/expression-tree.C -------------------------------------------------------------------------------- /Trees/in-threaded-binary-search-tree.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepali-Srivastava/advanced-data-structures-and-algorithms-in-c/HEAD/Trees/in-threaded-binary-search-tree.C --------------------------------------------------------------------------------