Python implementation of a default List using linked list
Project description
linkedpy
linkedpy
is a simple linked list implementation in Python, providing a custom List
class with various methods for managing linked list operations.
Features
-
Basic Operations:
append(value)
: Add a value to the end of the list.insert(index, value)
: Insert a value before the specified index.remove(value)
: Remove the first occurrence of a value.pop(index=None)
: Remove and return an item at a specified index (default is the last item).clear()
: Remove all items from the list.
-
Access and Indexing:
__getitem__(index)
: Get the item at a specific index.__setitem__(index, value)
: Set the item at a specific index.__delitem__(index)
: Delete the item at a specific index.
-
Information and Iteration:
count()
: Return the number of items in the list.__len__()
: Return the number of items in the list.to_list()
: Return the list as a normal Python list.__repr__()
: Return a string representation of the list.__iter__()
: Iterate over values in the list.
-
Concatenation:
__add__(other)
: Concatenate two lists using the+
operator.__iadd__(other)
: In-place concatenation using the+=
operator.
-
Statistical Operations:
min()
: Return the minimum value in the list.max()
: Return the maximum value in the list.
Usage
from linkedpy import List
# Create a new list
my_list = List(1, 2, 3)
# Append values
my_list.append(4)
my_list.append(5)
# Access elements
print(my_list[2]) # Output: 3
# Remove element
my_list.remove(2)
# Iterate over the list
for item in my_list:
print(item)
# Concatenate lists
new_list = my_list + List(6, 7, 8)
# In-place concatenation
my_list += List(9, 10)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
linkedpy-0.0.9.tar.gz
(3.6 kB
view details)
Built Distribution
File details
Details for the file linkedpy-0.0.9.tar.gz
.
File metadata
- Download URL: linkedpy-0.0.9.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b9c058ee4d8dcfe09992be349171359e7bace19850eec0e1458035583553255 |
|
MD5 | 204679e8ad6a290bf0d818a3cb40d3a2 |
|
BLAKE2b-256 | 769bb356229782bd071c39f4d78a697632e5e8ca8321a079d2edf704dc18a04b |
File details
Details for the file linkedpy-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: linkedpy-0.0.9-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e955feba58df2e55078b5f0b19916e74ff719e9d4aa85fc23b6147d46c1a1fce |
|
MD5 | a498cfa444aa63250a3b66b8f589ddce |
|
BLAKE2b-256 | 90ada16e3b7f9d887a9a7ea5ce495d2325ddc7635558fe0df92c1392e24663de |