what is the difference between array and list?
|
|
In C, an array is a fixed-size region of contiguous storage containing multiple objects, one after the other. This array is an "object" in the meaning which C gives to the word - basically just some memory that represents something. An object could just be an You can distinguish slightly between array objects, and array types. Often people use array objects which are allocated with So, when I say an array is fixed-size I mean that the size cannot change once the array is created, and this includes VLAs. There is That's what an array is. The C programming language doesn't define anything called a list. Can't really compare something which is well defined, with something that isn't defined ;-) Usually "list" would mean a linked list, but in some contexts or in other languages it means other things. For that matter, in other languages "array" could mean other things, although I can't immediately think of a language where it means anything very different from a C array. If your question really has nothing to do with C, and is a language-agnostic data-structures question, "what is the difference between an array and a linked list?", then it's a duplicate of this: |
||||
|
|
|
Although there is nothing like a Array: Random access, predefine size. Other languages like, say Python, may have have both Useful comments from below: You could add array lists. Lists which internally is an array which is doubled when needed and halved when only 1/4 full. This gives O(1) for add, remove, get(index) amortized. – lasseespeholt Python's |
|||||||||||||
|
|
There is no such thing as a standard list in C. There is such a thing in C++, where it is implemented as a double-linked list. The main differences are that arrays have random access - you can access any member of the array in |
|||||||||||
|
|
An often under appreciated characteristic of Linked data structures is that you can use them in situations where memory is highly fragmented due to there being no contiguous memory guarantee between elements. For example you could have 100MB of free space but only say a maximum run of free memory of length 10MB. In this case you can only create an an array of size 10MB but perhaps a potentially larger linked list since you would be able to make use of every run of free memory which was large enough to contain a single node. |
|||
|
|