Python/data_structures/linked_list
Hanif Ali 4c37eb7d07 Improved on Singly Linked List Programs (#1558)
* Improved Singly Linked List
Added String Representations of Nodes and Linked Lists
Added support for indexing and changing of Node data using indices.

* Added a few comments to Linked Lists

* Reformatted to conform to PEP8

* Added from_sequence.py
Convert a Python List to Linked List comprising of Nodes and return head.

* Added print_reverse.py
Recursive program to print the elements of a Linked List in reverse.

* Change 'is not None' for more Pythonicness
2019-11-10 09:47:04 +01:00
..
__init__.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
doubly_linked_list.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
from_sequence.py Improved on Singly Linked List Programs (#1558) 2019-11-10 09:47:04 +01:00
is_palindrome.py #315 Renamed all files to snake_case (#993) 2019-07-11 11:16:42 +02:00
print_reverse.py Improved on Singly Linked List Programs (#1558) 2019-11-10 09:47:04 +01:00
singly_linked_list.py Improved on Singly Linked List Programs (#1558) 2019-11-10 09:47:04 +01:00
swap_nodes.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00