Skip to content

Commit 3a12ec8

Browse files
authored
Merge pull request inzva#69 from hasanbal/bundle-index-update
Update the bundle indexes and add in bundle dir as well.
2 parents ae54512 + 4bc1f33 commit 3a12ec8

File tree

2 files changed

+34
-13
lines changed

2 files changed

+34
-13
lines changed

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,21 @@ If you want to support the community as an Editor or Problem Setter, and get sch
4747
| Name | Topics |
4848
|------|-------|
4949
| [01-Intro](https://github.com/inzva/Algorithm-Program/tree/master/bundles/01-intro) | Big O Notation, Recursion, Builtin Data Structures|
50-
| [02-Algorithms-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/02-algorithms-1) | Sorting Algorithms, Search Algorithms|
51-
| [03-Math-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/03-math-1) | Number Theory, Factorization, Combinatorics, Exponentiation|
52-
| [04-Graph-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/04-graph-1) | Representing Graphs, Tree Traversals, Binary Search Tree, DFS, BFS, Union Find, Heap|
53-
| [05-DP-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/05-dp-1) | Greedy Algorithms, Memoization, Common DP Problems|
54-
| [06-Data-Structures-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/06-data-structures-1) | Stack, Queue, Deque, Linked List, Prefix Sum, Sparse Table, BIT, SQRT Decomposition, Segment Tree|
55-
| [07-Graph-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/07-graph-2) | Bipartate Checking, Topoligical Sort, Shortest Path, Minimum Spanning Tree|
56-
| [08-Data-Structures-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/08-data-structures-2) |Self Balancing Binary Trees, Lowest Common Ancestor in a Tree|
57-
| [09-Data-Structures-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/09-data-structures-3) |Segment Tree with Lazy Propogation, Binary Search on Segment Tree, Mo's Algorithm, Trie|
58-
| [10-DP-2/](https://github.com/inzva/Algorithm-Program/tree/master/bundles/10-dp-2) |Bitmask DP, DP on Rooted Trees, DP on DAGs, Digit DP, Tree Child-Sibling Notation|
59-
| [11-Graph-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/11-graph-3) |Bridges and Articulation Points, SCC, BCC, Max Flow|
60-
| [12-Math-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/12-math-3) |Vector Calculus, Area Calculation, Lines and Planes, Intersection, Convex Hull Problem, Rotating Calipers, Closest Pair Problem|
61-
| [13-graph-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/13-graph-5) |Segment Tree on a Tree, Heavy-Light Decomposition, Centroid Decomposition of a Tree, Subtrees' Set-Swap Technique|
62-
| [14-Algorithms-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/14-Algorithms-5) |KMP, Robin-Karp Algorithm, Suffix Array, Longest Common Prefix Array|
50+
| [02-Algorithms-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/02-algorithms-1) | Binary Search, Ternary Search, Sorting Algorithms, Quickselect, Divide and Conquer|
51+
| [03-Math-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/03-math-1) | Number Theory, Sieve of Eratosthenes, Inverse Modular, GCD, LCM, Factorization, Combinatorics, Exponentiation, Meet in the Middle|
52+
| [04-Graph-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/04-graph-1) | Representing Graphs, Tree Traversals (Preorder, Inorder, Postorder), Binary Search Tree, DFS, BFS, Union Find (DSU), Heap|
53+
| [05-DP-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/05-dp-1) | Greedy Algorithms, Dynamic Programming, Memoization, Knapsack, Coin Problem, LCS, LIS|
54+
| [06-Data-Structures-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/06-data-structures-1) | Stack, Queue, Deque, Linked List, Prefix Sum, Sparse Table, Binary Indexed Tree, SQRT Decomposition, Segment Tree|
55+
| [07-Graph-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/07-graph-2) | Bipartate Checking, Topoligical Sort, Shortest Path (Dijkstra, Floyd-Warshall, Bellman Ford), Minimum Spanning Tree (Prim's, Kruskal's)|
56+
| [08-Data-Structures-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/08-data-structures-2) | Self Balancing Binary Trees, Treap, AVL Tree, Red Black Tree, Lowest Common Ancestor|
57+
| [09-Data-Structures-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/09-data-structures-3) | Segment Tree with Lazy Propogation, Binary Search on Segment Tree, Mo's Algorithm, Trie|
58+
| [10-DP-2/](https://github.com/inzva/Algorithm-Program/tree/master/bundles/10-dp-2) | Bitmask DP, DP on Rooted Trees, DP on DAGs, Digit DP, Tree Child-Sibling Notation|
59+
| [11-Graph-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/11-graph-3) | Bridges and Articulation Points, Strongly Connected Components (SCC), BCC, Cycle Finding, Max Flow|
60+
| [12-Math-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/12-math-3) | Vector Calculus, Area Calculation, Lines and Planes, Intersection, Convex Hull Problem, Rotating Calipers, Closest Pair Problem|
61+
| [13-graph-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/13-graph-5) | Segment Tree on a Tree, Heavy-Light Decomposition, Centroid Decomposition of a Tree, Subtrees' Set-Swap Technique|
62+
| [14-Algorithms-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/14-Algorithms-5) |String Matching Algorithms: KMP, Robin-Karp Algorithm, Suffix Array, Longest Common Prefix Array|
63+
64+
6365

6466

6567

bundles/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**BUNDLES**
2+
3+
| Name | Topics |
4+
|------|-------|
5+
| [01-Intro](https://github.com/inzva/Algorithm-Program/tree/master/bundles/01-intro) | Big O Notation, Recursion, Builtin Data Structures|
6+
| [02-Algorithms-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/02-algorithms-1) | Binary Search, Ternary Search, Sorting Algorithms, Quickselect, Divide and Conquer|
7+
| [03-Math-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/03-math-1) | Number Theory, Sieve of Eratosthenes, Inverse Modular, GCD, LCM, Factorization, Combinatorics, Exponentiation, Meet in the Middle|
8+
| [04-Graph-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/04-graph-1) | Representing Graphs, Tree Traversals (Preorder, Inorder, Postorder), Binary Search Tree, DFS, BFS, Union Find (DSU), Heap|
9+
| [05-DP-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/05-dp-1) | Greedy Algorithms, Dynamic Programming, Memoization, Knapsack, Coin Problem, LCS, LIS|
10+
| [06-Data-Structures-1](https://github.com/inzva/Algorithm-Program/tree/master/bundles/06-data-structures-1) | Stack, Queue, Deque, Linked List, Prefix Sum, Sparse Table, Binary Indexed Tree, SQRT Decomposition, Segment Tree|
11+
| [07-Graph-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/07-graph-2) | Bipartate Checking, Topoligical Sort, Shortest Path (Dijkstra, Floyd-Warshall, Bellman Ford), Minimum Spanning Tree (Prim's, Kruskal's)|
12+
| [08-Data-Structures-2](https://github.com/inzva/Algorithm-Program/tree/master/bundles/08-data-structures-2) | Self Balancing Binary Trees, Treap, AVL Tree, Red Black Tree, Lowest Common Ancestor|
13+
| [09-Data-Structures-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/09-data-structures-3) | Segment Tree with Lazy Propogation, Binary Search on Segment Tree, Mo's Algorithm, Trie|
14+
| [10-DP-2/](https://github.com/inzva/Algorithm-Program/tree/master/bundles/10-dp-2) | Bitmask DP, DP on Rooted Trees, DP on DAGs, Digit DP, Tree Child-Sibling Notation|
15+
| [11-Graph-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/11-graph-3) | Bridges and Articulation Points, Strongly Connected Components (SCC), BCC, Cycle Finding, Max Flow|
16+
| [12-Math-3](https://github.com/inzva/Algorithm-Program/tree/master/bundles/12-math-3) | Vector Calculus, Area Calculation, Lines and Planes, Intersection, Convex Hull Problem, Rotating Calipers, Closest Pair Problem|
17+
| [13-graph-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/13-graph-5) | Segment Tree on a Tree, Heavy-Light Decomposition, Centroid Decomposition of a Tree, Subtrees' Set-Swap Technique|
18+
| [14-Algorithms-5](https://github.com/inzva/Algorithm-Program/tree/master/bundles/14-Algorithms-5) |String Matching Algorithms: KMP, Robin-Karp Algorithm, Suffix Array, Longest Common Prefix Array|
19+

0 commit comments

Comments
 (0)