data_structures.linked_list.from_sequence ========================================= .. py:module:: data_structures.linked_list.from_sequence Attributes ---------- .. autoapisummary:: data_structures.linked_list.from_sequence.linked_list data_structures.linked_list.from_sequence.list_data Classes ------- .. autoapisummary:: data_structures.linked_list.from_sequence.Node Functions --------- .. autoapisummary:: data_structures.linked_list.from_sequence.make_linked_list Module Contents --------------- .. py:class:: Node(data=None) .. py:method:: __repr__() Returns a visual representation of the node and all its following nodes. .. py:attribute:: data :value: None .. py:attribute:: next :value: None .. py:function:: make_linked_list(elements_list) Creates a Linked List from the elements of the given sequence (list/tuple) and returns the head of the Linked List. .. py:data:: linked_list .. py:data:: list_data :value: [1, 3, 5, 32, 44, 12, 43]