|
131 | 131 | * [Deque Doubly](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/deque_doubly.py) |
132 | 132 | * [Doubly Linked List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/doubly_linked_list.py) |
133 | 133 | * [From Sequence](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/from_sequence.py) |
| 134 | + * [Has Loop](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/has_loop.py) |
134 | 135 | * [Is Palindrome](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/is_palindrome.py) |
135 | 136 | * [Middle Element Of Linked List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/middle_element_of_linked_list.py) |
136 | 137 | * [Print Reverse](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/print_reverse.py) |
|
141 | 142 | * [Circular Queue](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/circular_queue.py) |
142 | 143 | * [Double Ended Queue](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/double_ended_queue.py) |
143 | 144 | * [Linked Queue](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/linked_queue.py) |
| 145 | + * [Priority Queue Using List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/priority_queue_using_list.py) |
144 | 146 | * [Queue On List](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/queue_on_list.py) |
145 | 147 | * [Queue On Pseudo Stack](https://github.com/TheAlgorithms/Python/blob/master/data_structures/queue/queue_on_pseudo_stack.py) |
146 | 148 | * Stacks |
|
518 | 520 | * [Sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_06/sol2.py) |
519 | 521 | * [Sol3](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_06/sol3.py) |
520 | 522 | * [Sol4](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_06/sol4.py) |
| 523 | + * [Test Solutions](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_06/test_solutions.py) |
521 | 524 | * Problem 07 |
522 | 525 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_07/sol1.py) |
523 | 526 | * [Sol2](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_07/sol2.py) |
|
648 | 651 | ## Searches |
649 | 652 | * [Binary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py) |
650 | 653 | * [Double Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/double_linear_search.py) |
| 654 | + * [Double Linear Search Recursion](https://github.com/TheAlgorithms/Python/blob/master/searches/double_linear_search_recursion.py) |
651 | 655 | * [Fibonacci Search](https://github.com/TheAlgorithms/Python/blob/master/searches/fibonacci_search.py) |
652 | 656 | * [Hill Climbing](https://github.com/TheAlgorithms/Python/blob/master/searches/hill_climbing.py) |
653 | 657 | * [Interpolation Search](https://github.com/TheAlgorithms/Python/blob/master/searches/interpolation_search.py) |
654 | 658 | * [Jump Search](https://github.com/TheAlgorithms/Python/blob/master/searches/jump_search.py) |
655 | 659 | * [Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/linear_search.py) |
656 | 660 | * [Quick Select](https://github.com/TheAlgorithms/Python/blob/master/searches/quick_select.py) |
657 | 661 | * [Sentinel Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/sentinel_linear_search.py) |
658 | | - * [Simple-Binary-Search](https://github.com/TheAlgorithms/Python/blob/master/searches/simple-binary-search.py) |
| 662 | + * [Simple Binary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/simple_binary_search.py) |
659 | 663 | * [Simulated Annealing](https://github.com/TheAlgorithms/Python/blob/master/searches/simulated_annealing.py) |
660 | 664 | * [Tabu Search](https://github.com/TheAlgorithms/Python/blob/master/searches/tabu_search.py) |
661 | 665 | * [Ternary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/ternary_search.py) |
|
0 commit comments