|
253 | 253 | *[Finding Bridges](https://github.com/TheAlgorithms/Python/blob/master/graphs/finding_bridges.py)
|
254 | 254 | *[Frequent Pattern Graph Miner](https://github.com/TheAlgorithms/Python/blob/master/graphs/frequent_pattern_graph_miner.py)
|
255 | 255 | *[G Topological Sort](https://github.com/TheAlgorithms/Python/blob/master/graphs/g_topological_sort.py)
|
| 256 | +*[Gale Shapley Bigraph](https://github.com/TheAlgorithms/Python/blob/master/graphs/gale_shapley_bigraph.py) |
256 | 257 | *[Graph List](https://github.com/TheAlgorithms/Python/blob/master/graphs/graph_list.py)
|
257 | 258 | *[Graph Matrix](https://github.com/TheAlgorithms/Python/blob/master/graphs/graph_matrix.py)
|
258 | 259 | *[Graphs Floyd Warshall](https://github.com/TheAlgorithms/Python/blob/master/graphs/graphs_floyd_warshall.py)
|
|
596 | 597 |
|
597 | 598 | ##Searches
|
598 | 599 | *[Binary Search](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
|
| 600 | +*[Double Linear Search](https://github.com/TheAlgorithms/Python/blob/master/searches/double_linear_search.py) |
599 | 601 | *[Fibonacci Search](https://github.com/TheAlgorithms/Python/blob/master/searches/fibonacci_search.py)
|
600 | 602 | *[Hill Climbing](https://github.com/TheAlgorithms/Python/blob/master/searches/hill_climbing.py)
|
601 | 603 | *[Interpolation Search](https://github.com/TheAlgorithms/Python/blob/master/searches/interpolation_search.py)
|
|