mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
4d0c830d2c
* ci(pre-commit): Add ``flake8-builtins`` additional dependency to ``pre-commit`` (#7104) * refactor: Fix ``flake8-builtins`` (#7104) * fix(lru_cache): Fix naming conventions in docstrings (#7104) * ci(pre-commit): Order additional dependencies alphabetically (#7104) * fix(lfu_cache): Correct function name in docstring (#7104) * Update strings/snake_case_to_camel_pascal_case.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update data_structures/stacks/next_greater_element.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update digital_image_processing/index_calculation.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update graphs/prim.py Co-authored-by: Christian Clauss <cclauss@me.com> * Update hashes/djb2.py Co-authored-by: Christian Clauss <cclauss@me.com> * refactor: Rename `_builtin` to `builtin_` ( #7104) * fix: Rename all instances (#7104) * refactor: Update variable names (#7104) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * ci: Create ``tox.ini`` and ignore ``A003`` (#7123) * revert: Remove function name changes (#7104) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Rename tox.ini to .flake8 * Update data_structures/heap/heap.py Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com> * refactor: Rename `next_` to `next_item` (#7104) * ci(pre-commit): Add `flake8` plugin `flake8-bugbear` (#7127) * refactor: Follow `flake8-bugbear` plugin (#7127) * fix: Correct `knapsack` code (#7127) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: Christian Clauss <cclauss@me.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>
145 lines
4.3 KiB
Python
145 lines
4.3 KiB
Python
from __future__ import annotations
|
|
|
|
from collections.abc import Iterator
|
|
from typing import Any
|
|
|
|
|
|
class Node:
|
|
def __init__(self, data: Any):
|
|
self.data: Any = data
|
|
self.next: Node | None = None
|
|
|
|
|
|
class CircularLinkedList:
|
|
def __init__(self):
|
|
self.head = None
|
|
self.tail = None
|
|
|
|
def __iter__(self) -> Iterator[Any]:
|
|
node = self.head
|
|
while self.head:
|
|
yield node.data
|
|
node = node.next
|
|
if node == self.head:
|
|
break
|
|
|
|
def __len__(self) -> int:
|
|
return len(tuple(iter(self)))
|
|
|
|
def __repr__(self):
|
|
return "->".join(str(item) for item in iter(self))
|
|
|
|
def insert_tail(self, data: Any) -> None:
|
|
self.insert_nth(len(self), data)
|
|
|
|
def insert_head(self, data: Any) -> None:
|
|
self.insert_nth(0, data)
|
|
|
|
def insert_nth(self, index: int, data: Any) -> None:
|
|
if index < 0 or index > len(self):
|
|
raise IndexError("list index out of range.")
|
|
new_node = Node(data)
|
|
if self.head is None:
|
|
new_node.next = new_node # first node points itself
|
|
self.tail = self.head = new_node
|
|
elif index == 0: # insert at head
|
|
new_node.next = self.head
|
|
self.head = self.tail.next = new_node
|
|
else:
|
|
temp = self.head
|
|
for _ in range(index - 1):
|
|
temp = temp.next
|
|
new_node.next = temp.next
|
|
temp.next = new_node
|
|
if index == len(self) - 1: # insert at tail
|
|
self.tail = new_node
|
|
|
|
def delete_front(self):
|
|
return self.delete_nth(0)
|
|
|
|
def delete_tail(self) -> Any:
|
|
return self.delete_nth(len(self) - 1)
|
|
|
|
def delete_nth(self, index: int = 0) -> Any:
|
|
if not 0 <= index < len(self):
|
|
raise IndexError("list index out of range.")
|
|
delete_node = self.head
|
|
if self.head == self.tail: # just one node
|
|
self.head = self.tail = None
|
|
elif index == 0: # delete head node
|
|
self.tail.next = self.tail.next.next
|
|
self.head = self.head.next
|
|
else:
|
|
temp = self.head
|
|
for _ in range(index - 1):
|
|
temp = temp.next
|
|
delete_node = temp.next
|
|
temp.next = temp.next.next
|
|
if index == len(self) - 1: # delete at tail
|
|
self.tail = temp
|
|
return delete_node.data
|
|
|
|
def is_empty(self) -> bool:
|
|
return len(self) == 0
|
|
|
|
|
|
def test_circular_linked_list() -> None:
|
|
"""
|
|
>>> test_circular_linked_list()
|
|
"""
|
|
circular_linked_list = CircularLinkedList()
|
|
assert len(circular_linked_list) == 0
|
|
assert circular_linked_list.is_empty() is True
|
|
assert str(circular_linked_list) == ""
|
|
|
|
try:
|
|
circular_linked_list.delete_front()
|
|
raise AssertionError() # This should not happen
|
|
except IndexError:
|
|
assert True # This should happen
|
|
|
|
try:
|
|
circular_linked_list.delete_tail()
|
|
raise AssertionError() # This should not happen
|
|
except IndexError:
|
|
assert True # This should happen
|
|
|
|
try:
|
|
circular_linked_list.delete_nth(-1)
|
|
raise AssertionError()
|
|
except IndexError:
|
|
assert True
|
|
|
|
try:
|
|
circular_linked_list.delete_nth(0)
|
|
raise AssertionError()
|
|
except IndexError:
|
|
assert True
|
|
|
|
assert circular_linked_list.is_empty() is True
|
|
for i in range(5):
|
|
assert len(circular_linked_list) == i
|
|
circular_linked_list.insert_nth(i, i + 1)
|
|
assert str(circular_linked_list) == "->".join(str(i) for i in range(1, 6))
|
|
|
|
circular_linked_list.insert_tail(6)
|
|
assert str(circular_linked_list) == "->".join(str(i) for i in range(1, 7))
|
|
circular_linked_list.insert_head(0)
|
|
assert str(circular_linked_list) == "->".join(str(i) for i in range(0, 7))
|
|
|
|
assert circular_linked_list.delete_front() == 0
|
|
assert circular_linked_list.delete_tail() == 6
|
|
assert str(circular_linked_list) == "->".join(str(i) for i in range(1, 6))
|
|
assert circular_linked_list.delete_nth(2) == 3
|
|
|
|
circular_linked_list.insert_nth(2, 3)
|
|
assert str(circular_linked_list) == "->".join(str(i) for i in range(1, 6))
|
|
|
|
assert circular_linked_list.is_empty() is False
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|