Skip to content

Commit a5da82e

Browse files
authored
Added Missing Links to Algorithm explanations in README.md
Added missing links for - Min and Max (Iterative) - Min and Max (D&C) - Sorted Linked List - Dynamic Stack - Queue using Stacks - Two-Sum Problem - Isogram - Rotten Oranges - Find Distinct Subsets Improved documentation by providing reliable external resources for better understanding of these algorithms.
1 parent f8715ed commit a5da82e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ In order to achieve greater coverage and encourage more people to contribute to
11671167
</td>
11681168
</tr>
11691169
<tr>
1170-
<td>Min and Max (Iterative)</td>
1170+
<td><a href="https://www.geeksforgeeks.org/maximum-and-minimum-in-an-array/">Min and Max (Iterative)</a></td>
11711171
<td> <!-- C -->
11721172
<a href="./src/c/MinMaxIterative.c">
11731173
<img align="center" height="25" src="./logos/c.svg" />
@@ -1283,7 +1283,7 @@ In order to achieve greater coverage and encourage more people to contribute to
12831283
</td>
12841284
</tr>
12851285
<tr>
1286-
<td>Min and Max (D&C)</td>
1286+
<td><a href="https://www.tutorialspoint.com/data_structures_algorithms/max_min_problem.htm">Min and Max (D&C)</a></td>
12871287
<td> <!-- C -->
12881288
<a href="./src/c/MinMaxDC.c">
12891289
<img align="center" height="25" src="./logos/c.svg" />
@@ -2271,7 +2271,7 @@ In order to achieve greater coverage and encourage more people to contribute to
22712271
</td>
22722272
</tr>
22732273
<tr>
2274-
<td>Sorted Linked List</td>
2274+
<td><a href="https://www.geeksforgeeks.org/sorting-a-singly-linked-list/">Sorted Linked List</a></td>
22752275
<td> <!-- C -->
22762276
<a href="./src/c/SortedLinkedList.c">
22772277
<img align="center" height="25" src="./logos/c.svg" />
@@ -2445,7 +2445,7 @@ In order to achieve greater coverage and encourage more people to contribute to
24452445
</td>
24462446
</tr>
24472447
<tr>
2448-
<td>Dynamic Stack</td>
2448+
<td><a href="https://www.geeksforgeeks.org/implement-dynamic-multi-stack-k-stacks-using-only-one-data-structure/?ref=oin_asr3">Dynamic Stack</a></td>
24492449
<td> <!-- C -->
24502450
<a href="./src/c/DynamicStack.c">
24512451
<img align="center" height="25" src="./logos/c.svg" />
@@ -3609,7 +3609,7 @@ In order to achieve greater coverage and encourage more people to contribute to
36093609
</td>
36103610
</tr>
36113611
<tr>
3612-
<td>Queue using Stacks</td>
3612+
<td><a href="https://www.geeksforgeeks.org/queue-using-stacks/">Queue using Stacks</a></td>
36133613
<td> <!-- C -->
36143614
<a href="./CONTRIBUTING.md">
36153615
<img align="center" height="25" src="./logos/github.svg" />
@@ -3667,7 +3667,7 @@ In order to achieve greater coverage and encourage more people to contribute to
36673667
</td>
36683668
</tr>
36693669
<tr>
3670-
<td>Two-Sum Problem</td>
3670+
<td><a href="https://www.geeksforgeeks.org/check-if-pair-with-given-sum-exists-in-array/">Two-Sum Problem</a></td>
36713671
<td> <!-- C -->
36723672
<a href="./src/c/TwoSum.c">
36733673
<img align="center" height="25" src="./logos/c.svg" />
@@ -3783,7 +3783,7 @@ In order to achieve greater coverage and encourage more people to contribute to
37833783
</td>
37843784
</tr>
37853785
<tr>
3786-
<td>Isogram</td>
3786+
<td><a href="https://www.geeksforgeeks.org/check-string-isogram-not/">Isogram</a></td>
37873787
<td> <!-- C -->
37883788
<a href="./CONTRIBUTING.md">
37893789
<img align="center" height="25" src="./logos/github.svg" />
@@ -3957,7 +3957,7 @@ In order to achieve greater coverage and encourage more people to contribute to
39573957
</td>
39583958
</tr>
39593959
<tr>
3960-
<td>Rotten Oranges</td>
3960+
<td><a href="https://www.geeksforgeeks.org/minimum-time-required-so-that-all-oranges-become-rotten/">Rotten Oranges</a></td>
39613961
<td> <!-- C -->
39623962
<a href="./CONTRIBUTING.md">
39633963
<img align="center" height="25" src="./logos/github.svg" />
@@ -4015,7 +4015,7 @@ In order to achieve greater coverage and encourage more people to contribute to
40154015
</td>
40164016
</tr>
40174017
<tr>
4018-
<td>Find Distinct Subsets</td>
4018+
<td><a href="https://www.geeksforgeeks.org/find-all-unique-subsets-of-a-given-set/">Find Distinct Subsets</a></td>
40194019
<td> <!-- C -->
40204020
<a href="./CONTRIBUTING.md">
40214021
<img align="center" height="25" src="./logos/github.svg" />

0 commit comments

Comments
 (0)