News:

Daffodil International University Forum contains information about Open Text material, which is only intended for the significant learning purposes of the university students, faculty, other members, and the knowledge seekers of the entire world and is hoped that the offerings will aide in the distribution of reliable information and data relating to the many areas of knowledge.

Main Menu

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

Started by rashidacse, November 28, 2015, 12:57:11 PM

Previous topic - Next topic

rashidacse

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.