slinkedList
What is it?
slinkedList is a module to automate the operations that can be performed using linked list such as creating a new node, adding a new element,inserting an element at the head node, tail node and required location, merging the linked lists,sorting,duplicates removing and deleting the elements etc.
Where to get it
The source code is currently hosted on GitHub at: here
Installation
Use the package manager pip to install slinkedList.
Features
slinkedList can apply the following operations:
- creating a single liked list with data
- adding a node at starting,ending and particular position of the linked list
- removing node at starting,ending and particular position of the linked list
- Basic statistics like sum, min, max, mean, mode and median
- converting the linked list data to string, list, tuple and set
- counting the data occurrences in given linked list
- sorting the linked list and assign the values in sorted way
- Searching particular data items in liked list
- Replacing the values with new data
- Slicing the linked list
- Removing duplicates, equalizing two liked lists, merging two linked list, copy, clear, push, pop, isempty, lenght etc etc..
- The main advantage of this linked list is we can traverse using for loop and this linked list has operator overloading so we can perform +, -, *, **, /, //,%, [], +=,-= etc etc operations
Installation
slinkedList requires Python 3 .
To install using pip, use
pip install slinkedList
Usage
import slinkedList as ll
empty_list= ll.SingleLinkedList()
- creating linked list with data
temp = ll.SingleLinkedList([1,2,3,4])
myList=ll.SingleLinkedList([1,2,3,4,5,6,7,8])
myList.addToEnd(12)
print(myList.length())
print(myList.index([2,3,4]))
print(myList.atIndex([3,1]))
print(myList.removeItem([12,1]))
myList.removeAtPosition([3,2,4])
new_list=myList.new_sorted(reverse=True)
Examples
1)
import slinkedList as ll
m= ll.SingleLinkedList(data=[1,2,3,4])
n= ll.SingleLinkedList(data=[5,6,7])
o=m+n
print(o)
returns,
sllist([1, 2, 3, 4, 5, 6, 7])
2)
import slinkedList as ll
m= ll.SingleLinkedList(data=[1,2,3,4,5,6,7,8])
print(m[:4].toString("->"))
returns,
1->2->3->4
3)
import slinkedList as ll
m= ll.SingleLinkedList(data=[1,2,3,4])
print(reversed(m))
returns,
sllist([4, 3, 2, 1])
Documentation
The official documentation is hosted on Drive : doc
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT
For any questions, issues, bugs, and suggestions please visit here