@@ -67,7 +67,7 @@ In order to achieve greater coverage and encourage more people to contribute to
67
67
<tr>
68
68
<td><a href="https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm">Dijkstra's Algorithm</a></td>
69
69
<td> <!-- C -->
70
- <a href="./src/c/AlgoritmoDijkstra .c">
70
+ <a href="./src/c/DijkstraAlgorithm .c">
71
71
<img align="center" height="25" src="./logos/c.svg" />
72
72
</a>
73
73
</td>
@@ -125,7 +125,7 @@ In order to achieve greater coverage and encourage more people to contribute to
125
125
<tr>
126
126
<td><a href="https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall_algorithm">Floyd–Warshall Algorithm</a></td>
127
127
<td> <!-- C -->
128
- <a href="./src/c/AlgoritmoFloydWarshall .c">
128
+ <a href="./src/c/FloydWarshallAlgorithm .c">
129
129
<img align="center" height="25" src="./logos/c.svg" />
130
130
</a>
131
131
</td>
@@ -241,7 +241,7 @@ In order to achieve greater coverage and encourage more people to contribute to
241
241
<tr>
242
242
<td><a href="https://en.wikipedia.org/wiki/Graph_traversal">Graph Search</a></td>
243
243
<td> <!-- C -->
244
- <a href="./src/c/BuscaEmGrafo .c">
244
+ <a href="./src/c/GraphSearch .c">
245
245
<img align="center" height="25" src="./logos/c.svg" />
246
246
</a>
247
247
</td>
@@ -299,7 +299,7 @@ In order to achieve greater coverage and encourage more people to contribute to
299
299
<tr>
300
300
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search (Iterative)</a></td>
301
301
<td> <!-- C -->
302
- <a href="./src/c/BuscaSequencial .c">
302
+ <a href="./src/c/LinearSearch .c">
303
303
<img align="center" height="25" src="./logos/c.svg" />
304
304
</a>
305
305
</td>
@@ -357,7 +357,7 @@ In order to achieve greater coverage and encourage more people to contribute to
357
357
<tr>
358
358
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search (Recursive)</a></td>
359
359
<td> <!-- C -->
360
- <a href="./src/c/BuscaSequencialRecursiva .c">
360
+ <a href="./src/c/RecursiveSequentialSearch .c">
361
361
<img align="center" height="25" src="./logos/c.svg" />
362
362
</a>
363
363
</td>
@@ -415,7 +415,7 @@ In order to achieve greater coverage and encourage more people to contribute to
415
415
<tr>
416
416
<td><a href="https://www.geeksforgeeks.org/sentinel-linear-search">Linear Search (Sentinel)</a></td>
417
417
<td> <!-- C -->
418
- <a href="./src/c/BuscaSentinela .c">
418
+ <a href="./src/c/SentinelSearch .c">
419
419
<img align="center" height="25" src="./logos/c.svg" />
420
420
</a>
421
421
</td>
@@ -531,7 +531,7 @@ In order to achieve greater coverage and encourage more people to contribute to
531
531
<tr>
532
532
<td><a href="https://en.wikipedia.org/wiki/Travelling_salesman_problem">Travelling Salesman</a></td>
533
533
<td> <!-- C -->
534
- <a href="./src/c/CaixeiroViajante .c">
534
+ <a href="./src/c/TravellingSalesman .c">
535
535
<img align="center" height="25" src="./logos/c.svg" />
536
536
</a>
537
537
</td>
@@ -589,7 +589,7 @@ In order to achieve greater coverage and encourage more people to contribute to
589
589
<tr>
590
590
<td><a href="https://en.wikipedia.org/wiki/Hamiltonian_path">Hamiltonian Cycle</a></td>
591
591
<td> <!-- C -->
592
- <a href="./src/c/CicloHamiltoniano .c">
592
+ <a href="./src/c/HamiltonianCycle .c">
593
593
<img align="center" height="25" src="./logos/c.svg" />
594
594
</a>
595
595
</td>
@@ -647,7 +647,7 @@ In order to achieve greater coverage and encourage more people to contribute to
647
647
<tr>
648
648
<td><a href="https://graphstream-project.org/doc/Algorithms/Connected-Components">Connected Components</a></td>
649
649
<td> <!-- C -->
650
- <a href="./src/c/ComponentesConexos .c">
650
+ <a href="./src/c/ConnectedComponents .c">
651
651
<img align="center" height="25" src="./logos/c.svg" />
652
652
</a>
653
653
</td>
@@ -705,7 +705,7 @@ In order to achieve greater coverage and encourage more people to contribute to
705
705
<tr>
706
706
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Exponentiation (Iterative)</a></td>
707
707
<td> <!-- C -->
708
- <a href="./src/c/Exponenciacao .c">
708
+ <a href="./src/c/Exponentiation .c">
709
709
<img align="center" height="25" src="./logos/c.svg" />
710
710
</a>
711
711
</td>
@@ -763,7 +763,7 @@ In order to achieve greater coverage and encourage more people to contribute to
763
763
<tr>
764
764
<td><a href="https://en.wikipedia.org/wiki/Exponentiation">Exponentiation (Recursive)</a></td>
765
765
<td> <!-- C -->
766
- <a href="./src/c/ExponenciacaoRecursiva .c">
766
+ <a href="./src/c/RecursiveExponentiation .c">
767
767
<img align="center" height="25" src="./logos/c.svg" />
768
768
</a>
769
769
</td>
@@ -821,7 +821,7 @@ In order to achieve greater coverage and encourage more people to contribute to
821
821
<tr>
822
822
<td><a href="https://en.wikipedia.org/wiki/Factorial">Factorial (Iterative)</a></td>
823
823
<td> <!-- C -->
824
- <a href="./src/c/Fatorial .c">
824
+ <a href="./src/c/Factorial .c">
825
825
<img align="center" height="25" src="./logos/c.svg" />
826
826
</a>
827
827
</td>
@@ -879,7 +879,7 @@ In order to achieve greater coverage and encourage more people to contribute to
879
879
<tr>
880
880
<td><a href="https://en.wikipedia.org/wiki/Factorial">Factorial (Recursive)</a></td>
881
881
<td> <!-- C -->
882
- <a href="./src/c/FatorialRecursiva .c">
882
+ <a href="./src/c/RecursiveFactorial .c">
883
883
<img align="center" height="25" src="./logos/c.svg" />
884
884
</a>
885
885
</td>
@@ -1693,7 +1693,7 @@ In order to achieve greater coverage and encourage more people to contribute to
1693
1693
<tr>
1694
1694
<td><a href="https://en.wikipedia.org/wiki/Binary_tree">Binary Tree</a></td>
1695
1695
<td> <!-- C -->
1696
- <a href="./src/c/ArvoreBinaria .c">
1696
+ <a href="./src/c/BinaryTree .c">
1697
1697
<img align="center" height="25" src="./logos/c.svg" />
1698
1698
</a>
1699
1699
</td>
@@ -1751,7 +1751,7 @@ In order to achieve greater coverage and encourage more people to contribute to
1751
1751
<tr>
1752
1752
<td><a href="https://en.wikipedia.org/wiki/Binary_search_tree">Binary Search Tree</a></td>
1753
1753
<td> <!-- C -->
1754
- <a href="./src/c/ArvoreBinariaDeBusca .c">
1754
+ <a href="./src/c/BinarySearchTree .c">
1755
1755
<img align="center" height="25" src="./logos/c.svg" />
1756
1756
</a>
1757
1757
</td>
@@ -1867,7 +1867,7 @@ In order to achieve greater coverage and encourage more people to contribute to
1867
1867
<tr>
1868
1868
<td><a href="https://en.wikipedia.org/wiki/Queue_(abstract_data_type)">Queue</a></td>
1869
1869
<td> <!-- C -->
1870
- <a href="./src/c/Fila .c">
1870
+ <a href="./src/c/Queue .c">
1871
1871
<img align="center" height="25" src="./logos/c.svg" />
1872
1872
</a>
1873
1873
</td>
@@ -1925,7 +1925,7 @@ In order to achieve greater coverage and encourage more people to contribute to
1925
1925
<tr>
1926
1926
<td><a href="https://iq.opengenus.org/dynamic-queue/">Dynamic Queue</a></td>
1927
1927
<td> <!-- C -->
1928
- <a href="./src/c/FilaEncadeadaDinamica .c">
1928
+ <a href="./src/c/DynamicQueue .c">
1929
1929
<img align="center" height="25" src="./logos/c.svg" />
1930
1930
</a>
1931
1931
</td>
@@ -1983,7 +1983,7 @@ In order to achieve greater coverage and encourage more people to contribute to
1983
1983
<tr>
1984
1984
<td><a href="https://en.wikipedia.org/wiki/Graph_(abstract_data_type)">Graph</a></td>
1985
1985
<td> <!-- C -->
1986
- <a href="./src/c/Grafos .c">
1986
+ <a href="./src/c/Graphs .c">
1987
1987
<img align="center" height="25" src="./logos/c.svg" />
1988
1988
</a>
1989
1989
</td>
@@ -2041,7 +2041,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2041
2041
<tr>
2042
2042
<td><a href="https://www.programiz.com/dsa/circular-linked-list">Circular Linked List</a></td>
2043
2043
<td> <!-- C -->
2044
- <a href="./src/c/ListaCircularLigada .c">
2044
+ <a href="./src/c/CircularLinkedList .c">
2045
2045
<img align="center" height="25" src="./logos/c.svg" />
2046
2046
</a>
2047
2047
</td>
@@ -2099,7 +2099,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2099
2099
<tr>
2100
2100
<td><a href="https://en.wikipedia.org/wiki/Linked_list">Singly Linked List</a></td>
2101
2101
<td> <!-- C -->
2102
- <a href="./src/c/ListaEncadeada .c">
2102
+ <a href="./src/c/LinkedList .c">
2103
2103
<img align="center" height="25" src="./logos/c.svg" />
2104
2104
</a>
2105
2105
</td>
@@ -2157,7 +2157,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2157
2157
<tr>
2158
2158
<td><a href="https://en.wikipedia.org/wiki/Linked_list">Doubly Linked List</a></td>
2159
2159
<td> <!-- C -->
2160
- <a href="./src/c/ListaDuplamenteEncadeada .c">
2160
+ <a href="./src/c/DoublyLinkedList .c">
2161
2161
<img align="center" height="25" src="./logos/c.svg" />
2162
2162
</a>
2163
2163
</td>
@@ -2215,7 +2215,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2215
2215
<tr>
2216
2216
<td><a href="https://en.wikipedia.org/wiki/Linked_list">Unordered Linked List</a></td>
2217
2217
<td> <!-- C -->
2218
- <a href="./src/c/ListaLigadaNaoOrdenada .c">
2218
+ <a href="./src/c/UnorderedLinkedList .c">
2219
2219
<img align="center" height="25" src="./logos/c.svg" />
2220
2220
</a>
2221
2221
</td>
@@ -2273,7 +2273,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2273
2273
<tr>
2274
2274
<td>Sorted Linked List</td>
2275
2275
<td> <!-- C -->
2276
- <a href="./src/c/ListaSequencialOrdenada .c">
2276
+ <a href="./src/c/SortedLinkedList .c">
2277
2277
<img align="center" height="25" src="./logos/c.svg" />
2278
2278
</a>
2279
2279
</td>
@@ -2331,7 +2331,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2331
2331
<tr>
2332
2332
<td><a href="https://en.wikipedia.org/wiki/Stack_(abstract_data_type)">Stack</a></td>
2333
2333
<td> <!-- C -->
2334
- <a href="./src/c/Pilha .c">
2334
+ <a href="./src/c/Stack .c">
2335
2335
<img align="center" height="25" src="./logos/c.svg" />
2336
2336
</a>
2337
2337
</td>
@@ -2389,7 +2389,7 @@ In order to achieve greater coverage and encourage more people to contribute to
2389
2389
<tr>
2390
2390
<td>Dynamic Stack</td>
2391
2391
<td> <!-- C -->
2392
- <a href="./src/c/PilhaLigadaDinamica .c">
2392
+ <a href="./src/c/DynamicStack .c">
2393
2393
<img align="center" height="25" src="./logos/c.svg" />
2394
2394
</a>
2395
2395
</td>
@@ -3669,7 +3669,7 @@ In order to achieve greater coverage and encourage more people to contribute to
3669
3669
<tr>
3670
3670
<td><a href="https://en.wikipedia.org/wiki/Palindrome">Palindrome</a></td>
3671
3671
<td> <!-- C -->
3672
- <a href="./src/c/Palindromo .c">
3672
+ <a href="./src/c/Palindrome .c">
3673
3673
<img align="center" height="25" src="./logos/c.svg" />
3674
3674
</a>
3675
3675
</td>
0 commit comments