Skip to content

Commit 513070d

Browse files
committed
Edit algorithms names (README)
1 parent 1003513 commit 513070d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ In order to achieve greater coverage and encourage more people to contribute to
297297
</td>
298298
</tr>
299299
<tr>
300-
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search</a></td>
300+
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search (Iterative)</a></td>
301301
<td> <!-- C -->
302302
<a href="./src/c/BuscaSequencial.c">
303303
<img align="center" height="25" src="./logos/c.svg" />
@@ -355,7 +355,7 @@ In order to achieve greater coverage and encourage more people to contribute to
355355
</td>
356356
</tr>
357357
<tr>
358-
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Recursive Linear Search</a></td>
358+
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search (Recursive)</a></td>
359359
<td> <!-- C -->
360360
<a href="./src/c/BuscaSequencialRecursiva.c">
361361
<img align="center" height="25" src="./logos/c.svg" />
@@ -413,7 +413,7 @@ In order to achieve greater coverage and encourage more people to contribute to
413413
</td>
414414
</tr>
415415
<tr>
416-
<td><a href="https://www.geeksforgeeks.org/sentinel-linear-search">Sentinel Linear Search</a></td>
416+
<td><a href="https://www.geeksforgeeks.org/sentinel-linear-search">Linear Search (Sentinel)</a></td>
417417
<td> <!-- C -->
418418
<a href="./src/c/BuscaSentinela.c">
419419
<img align="center" height="25" src="./logos/c.svg" />
@@ -703,7 +703,7 @@ In order to achieve greater coverage and encourage more people to contribute to
703703
</td>
704704
</tr>
705705
<tr>
706-
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Exponentiation</a></td>
706+
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Exponentiation (Iterative)</a></td>
707707
<td> <!-- C -->
708708
<a href="./src/c/Exponenciacao.c">
709709
<img align="center" height="25" src="./logos/c.svg" />
@@ -761,7 +761,7 @@ In order to achieve greater coverage and encourage more people to contribute to
761761
</td>
762762
</tr>
763763
<tr>
764-
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Recursive Exponentiation</a></td>
764+
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Exponentiation (Recursive)</a></td>
765765
<td> <!-- C -->
766766
<a href="./src/c/ExponenciacaoRecursiva.c">
767767
<img align="center" height="25" src="./logos/c.svg" />
@@ -819,7 +819,7 @@ In order to achieve greater coverage and encourage more people to contribute to
819819
</td>
820820
</tr>
821821
<tr>
822-
<td><a href="https://en.wikipedia.org/wiki/Factorial">Factorial</a></td>
822+
<td><a href="https://en.wikipedia.org/wiki/Factorial">Factorial (Iterative)</a></td>
823823
<td> <!-- C -->
824824
<a href="./src/c/Fatorial.c">
825825
<img align="center" height="25" src="./logos/c.svg" />
@@ -877,7 +877,7 @@ In order to achieve greater coverage and encourage more people to contribute to
877877
</td>
878878
</tr>
879879
<tr>
880-
<td><a href="https://en.wikipedia.org/wiki/Factorial">Recursive Factorial</a></td>
880+
<td><a href="https://en.wikipedia.org/wiki/Factorial">Factorial (Recursive)</a></td>
881881
<td> <!-- C -->
882882
<a href="./src/c/FatorialRecursiva.c">
883883
<img align="center" height="25" src="./logos/c.svg" />
@@ -993,7 +993,7 @@ In order to achieve greater coverage and encourage more people to contribute to
993993
</td>
994994
</tr>
995995
<tr>
996-
<td><a href="https://www.geeksforgeeks.org/recursive-programs-to-find-minimum-and-maximum-elements-of-array/">Recursive Max</a></td>
996+
<td><a href="https://www.geeksforgeeks.org/recursive-programs-to-find-minimum-and-maximum-elements-of-array/">Max (Recursive)</a></td>
997997
<td> <!-- C -->
998998
<a href="./src/c/MaxRecursivo.c">
999999
<img align="center" height="25" src="./logos/c.svg" />
@@ -1051,7 +1051,7 @@ In order to achieve greater coverage and encourage more people to contribute to
10511051
</td>
10521052
</tr>
10531053
<tr>
1054-
<td>Iterative Min and Max</td>
1054+
<td>Min and Max (Iterative)</td>
10551055
<td> <!-- C -->
10561056
<a href="./src/c/IterativeMinAndMax.c">
10571057
<img align="center" height="25" src="./logos/c.svg" />
@@ -1109,7 +1109,7 @@ In order to achieve greater coverage and encourage more people to contribute to
11091109
</td>
11101110
</tr>
11111111
<tr>
1112-
<td><a href="https://www.geeksforgeeks.org/recursive-programs-to-find-minimum-and-maximum-elements-of-array/">Recursive Min and Max</a></td>
1112+
<td><a href="https://www.geeksforgeeks.org/recursive-programs-to-find-minimum-and-maximum-elements-of-array/">Min and Max (Recursive)</a></td>
11131113
<td> <!-- C -->
11141114
<a href="./src/c/MaxMinRecursivo.c">
11151115
<img align="center" height="25" src="./logos/c.svg" />
@@ -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>D&C Min and Max</td>
1170+
<td>Min and Max (D&C)</td>
11711171
<td> <!-- C -->
11721172
<a href="./CONTRIBUTING.md">
11731173
<img align="center" height="25" src="./logos/github.svg" />

0 commit comments

Comments
 (0)