Skip to content

Commit 95e8b3d

Browse files
committedNov 18, 2023
Rename LinearSearch
1 parent ea57ddf commit 95e8b3d

17 files changed

+16
-16
lines changed
 

‎README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -309,22 +309,22 @@ In order to achieve greater coverage and encourage more people to contribute to
309309
</a>
310310
</td>
311311
<td> <!-- Java -->
312-
<a href="src/java/LinearSearchIterative.java">
312+
<a href="src/java/LinearSearch.java">
313313
<img align="center" height="25" src="./logos/java.svg" />
314314
</a>
315315
</td>
316316
<td> <!-- Python -->
317-
<a href="./src/python/busca_sequencial.py">
317+
<a href="./src/python/linear_search.py">
318318
<img align="center" height="25" src="./logos/python.svg" />
319319
</a>
320320
</td>
321321
<td> <!-- Go -->
322-
<a href="./src/go/buscasequencial.go">
322+
<a href="./src/go/linear_search.go">
323323
<img align="center" height="25" src="./logos/golang.svg" />
324324
</a>
325325
</td>
326326
<td> <!-- Ruby -->
327-
<a href="./src/ruby/busca_sequencial.rb">
327+
<a href="./src/ruby/linear_search.rb">
328328
<img align="center" height="25" src="./logos/ruby.svg" />
329329
</a>
330330
</td>
@@ -334,12 +334,12 @@ In order to achieve greater coverage and encourage more people to contribute to
334334
</a>
335335
</td>
336336
<td> <!-- Swift -->
337-
<a href="./src/swift/sequentialSearch.swift">
337+
<a href="./src/swift/linearSearch.swift">
338338
<img align="center" height="25" src="./logos/swift.svg" />
339339
</a>
340340
</td>
341341
<td> <!-- Rust -->
342-
<a href="./src/rust/busca_sequencial.rs">
342+
<a href="./src/rust/linear_search.rs">
343343
<img align="center" height="25" src="./logos/rust.svg" />
344344
</a>
345345
</td>
@@ -357,7 +357,7 @@ In order to achieve greater coverage and encourage more people to contribute to
357357
<tr>
358358
<td><a href="https://en.wikipedia.org/wiki/Linear_search">Linear Search (Recursive)</a></td>
359359
<td> <!-- C -->
360-
<a href="./src/c/RecursiveSequentialSearch.c">
360+
<a href="./src/c/LinearSearchRecursive.c">
361361
<img align="center" height="25" src="./logos/c.svg" />
362362
</a>
363363
</td>
@@ -372,7 +372,7 @@ In order to achieve greater coverage and encourage more people to contribute to
372372
</a>
373373
</td>
374374
<td> <!-- Python -->
375-
<a href="./src/python/busca_sequencial_recursiva.py">
375+
<a href="./src/python/linear_search_recursive.py">
376376
<img align="center" height="25" src="./logos/python.svg" />
377377
</a>
378378
</td>
@@ -382,12 +382,12 @@ In order to achieve greater coverage and encourage more people to contribute to
382382
</a>
383383
</td>
384384
<td> <!-- Ruby -->
385-
<a href="./src/ruby/busca_sequencial_recursiva.rb">
385+
<a href="./src/ruby/linear_search_recursive.rb">
386386
<img align="center" height="25" src="./logos/ruby.svg" />
387387
</a>
388388
</td>
389389
<td> <!-- JavaScript -->
390-
<a href="./src/javascript/RecursiveLinearSearch.js">
390+
<a href="./src/javascript/LinearSearchRecursive.js">
391391
<img align="center" height="25" src="./logos/javascript.svg" />
392392
</a>
393393
</td>
@@ -397,12 +397,12 @@ In order to achieve greater coverage and encourage more people to contribute to
397397
</a>
398398
</td>
399399
<td> <!-- Rust -->
400-
<a href="./src/rust/busca_sequencial_recursiva.rs">
400+
<a href="./src/rust/linear_search_recursive.rs">
401401
<img align="center" height="25" src="./logos/rust.svg" />
402402
</a>
403403
</td>
404404
<td> <!-- Scala -->
405-
<a href="./src/scala/RecursiveLinearSearch.scala">
405+
<a href="./src/scala/LinearSearchRecursive.scala">
406406
<img align="center" height="25" src="./logos/scala.svg" />
407407
</a>
408408
</td>
@@ -415,7 +415,7 @@ In order to achieve greater coverage and encourage more people to contribute to
415415
<tr>
416416
<td><a href="https://www.geeksforgeeks.org/sentinel-linear-search">Linear Search (Sentinel)</a></td>
417417
<td> <!-- C -->
418-
<a href="./src/c/SentinelSearch.c">
418+
<a href="./src/c/LinearSearchSentinel.c">
419419
<img align="center" height="25" src="./logos/c.svg" />
420420
</a>
421421
</td>
@@ -430,7 +430,7 @@ In order to achieve greater coverage and encourage more people to contribute to
430430
</a>
431431
</td>
432432
<td> <!-- Python -->
433-
<a href="./src/python/busca_sentinela.py">
433+
<a href="./src/python/linear_search_sentinel.py">
434434
<img align="center" height="25" src="./logos/python.svg" />
435435
</a>
436436
</td>
@@ -440,12 +440,12 @@ In order to achieve greater coverage and encourage more people to contribute to
440440
</a>
441441
</td>
442442
<td> <!-- Ruby -->
443-
<a href="./src/ruby/busca_sentinela.rb">
443+
<a href="./src/ruby/linear_search_sentinel.rb">
444444
<img align="center" height="25" src="./logos/ruby.svg" />
445445
</a>
446446
</td>
447447
<td> <!-- JavaScript -->
448-
<a href="./src/javascript/SentinelSearch.js">
448+
<a href="./src/javascript/LinearSearchSentinel.js">
449449
<img align="center" height="25" src="./logos/javascript.svg" />
450450
</a>
451451
</td>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.