Compare commits

...

7 Commits

Author SHA1 Message Date
Giulio Tantaro
f397e28164
Merge 0d5c25c839 into f3f32ae3ca 2024-11-20 00:45:52 +08:00
pre-commit-ci[bot]
f3f32ae3ca
[pre-commit.ci] pre-commit autoupdate (#12385)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.7.3 → v0.7.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.3...v0.7.4)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-11-18 22:07:12 +01:00
Christian Clauss
e3bd7721c8
validate_filenames.py Shebang python for Windows (#12371) 2024-11-15 14:59:14 +01:00
pre-commit-ci[bot]
e3f3d668be
[pre-commit.ci] pre-commit autoupdate (#12370)
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.7.2 → v0.7.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.2...v0.7.3)
- [github.com/abravalheri/validate-pyproject: v0.22 → v0.23](https://github.com/abravalheri/validate-pyproject/compare/v0.22...v0.23)

* Update sudoku_solver.py

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
2024-11-11 21:05:50 +01:00
pre-commit-ci[bot]
3e9ca92ca9
[pre-commit.ci] pre-commit autoupdate (#12349)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.7.1 → v0.7.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.1...v0.7.2)
- [github.com/tox-dev/pyproject-fmt: v2.4.3 → v2.5.0](https://github.com/tox-dev/pyproject-fmt/compare/v2.4.3...v2.5.0)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-11-04 21:09:03 +01:00
lorduke22
0d5c25c839 Add doctests to dijkstra_2.py 2024-10-07 22:09:07 +02:00
lorduke22
5f66061be5 add doctest for quick_sort_3_partition. Contributes to #9943 2024-10-05 17:05:08 +02:00
5 changed files with 91 additions and 7 deletions

View File

@ -16,7 +16,7 @@ repos:
- id: auto-walrus
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
rev: v0.7.4
hooks:
- id: ruff
- id: ruff-format
@ -29,7 +29,7 @@ repos:
- tomli
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "v2.4.3"
rev: "v2.5.0"
hooks:
- id: pyproject-fmt
@ -42,7 +42,7 @@ repos:
pass_filenames: false
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.22
rev: v0.23
hooks:
- id: validate-pyproject

View File

@ -172,7 +172,7 @@ def solved(values):
def from_file(filename, sep="\n"):
"Parse a file into a list of strings, separated by sep."
return open(filename).read().strip().split(sep) # noqa: SIM115
return open(filename).read().strip().split(sep)
def random_puzzle(assignments=17):

View File

@ -1,14 +1,47 @@
def print_dist(dist, v):
"""
Print vertex distance
Examples:
>>> print_dist([float('inf'),float('inf'),float('inf')], 3)
<BLANKLINE>
Vertex Distance
0 INF
1 INF
2 INF
>>> print_dist([2.0,6.0,10.0,3.0], 4)
<BLANKLINE>
Vertex Distance
0 2
1 6
2 10
3 3
>>> print_dist([], 4)
Traceback (most recent call last):
...
IndexError: list index out of range
"""
print("\nVertex Distance")
for i in range(v):
if dist[i] != float("inf"):
print(i, "\t", int(dist[i]), end="\t")
print(i, " ", int(dist[i]), end="")
else:
print(i, "\t", "INF", end="\t")
print(i, " ", "INF", end="")
print()
def min_dist(mdist, vset, v):
"""
Finds the index of the node with the minimum distance between no-visited nodes
Examples:
>>> dist = [0.0, float('inf'), float('inf'), float('inf')]
>>> set = [False, False, False, False]
>>> min_dist(dist, set, 4)
0
>>> min_dist([], [], 0)
-1
"""
min_val = float("inf")
min_ind = -1
for i in range(v):
@ -19,6 +52,30 @@ def min_dist(mdist, vset, v):
def dijkstra(graph, v, src):
"""
Dijkstra's algorithm to calculate the shortest distances from the src source node
to all other nodes in a graph represented as an adjacency matrix.
Examples:
>>> G1 = [[0.0, 6.0, 2.0, float('inf')],
... [float('inf'), 0.0, 9.0, 1.0],
... [float('inf'), float('inf'), 0.0, 3.0],
... [float('inf'), float('inf'), float('inf'), 0.0]]
>>> dijkstra(G1, 4, 5)
Traceback (most recent call last):
...
IndexError: list assignment index out of range
>>> G2 = [[0.0, 6.0, 2.0, float('inf')],
... [float('inf'), 0.0, 9.0, 1.0],
... [float('inf'), float('inf'), 0.0, 3.0],
... [float('inf'), float('inf'), float('inf'), 0.0]]
>>> dijkstra(G2, 4, 0)
<BLANKLINE>
Vertex Distance
0 0
1 6
2 2
"""
mdist = [float("inf") for _ in range(v)]
vset = [False for _ in range(v)]
mdist[src] = 0.0
@ -39,6 +96,10 @@ def dijkstra(graph, v, src):
if __name__ == "__main__":
import doctest
doctest.testmod(verbose=True)
V = int(input("Enter number of vertices: ").strip())
E = int(input("Enter number of edges: ").strip())

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!python
import os
try:

View File

@ -1,4 +1,27 @@
def quick_sort_3partition(sorting: list, left: int, right: int) -> None:
""" "
Python implementation of quick sort algorithm with 3-way partition.
The idea of 3-way quick sort is based on "Dutch National Flag algorithm".
:param sorting: sort list
:param left: left endpoint of sorting
:param right: right endpoint of sorting
:return: None
Examples:
>>> array1 = [5, -1, -1, 5, 5, 24, 0]
>>> quick_sort_3partition(array1, 0, 6)
>>> array1
[-1, -1, 0, 5, 5, 5, 24]
>>> array2 = [9, 0, 2, 6]
>>> quick_sort_3partition(array2, 0, 3)
>>> array2
[0, 2, 6, 9]
>>> array3 = []
>>> quick_sort_3partition(array3, 0, 0)
>>> array3
[]
"""
if right <= left:
return
a = i = left