difference between the linked list and array data structures in Python?

Author Topic: difference between the linked list and array data structures in Python?  (Read 962 times)

Offline rashidacse

  • Full Member
  • ***
  • Posts: 103
  • Test
    • View Profile
Linked list doesn't give you ability to access Nth item in list easily. Array is similiar to python's list - ["some_text", 4, ...] but supports only one type. You can't mix them like in the above list. Profit of such solution is speed of accessing to Nth item.

Linked list isn't exactly the same as normal python's list.