Computer Science, asked by Malavya345, 11 months ago

Difference b/w list and array

Answers

Answered by icccwc2019
1

Answer:

A list is a different kind of data structure from an array. The biggest difference is in the idea of direct access Vs sequential access. Arrays allow both; direct and sequential access, while lists allow only sequential access. And this is because the way that these data structures are stored in memory.

Answered by SerenaBochenek
0

Some differences between List and Array are given below. Further explanation is given below.

Explanation:

Array

  • An array seems to be the software framework that comprises a set of data elements of particular types.
  • The easy access to an item in such an array.

List

  • The Link list is assumed to include a set of infinitely long connected items known as nodes.
  • The linked list makes an effort to reach an item linearly.

Learn more:

Difference between numpy array and list 2 ...

https://brainly.in/question/13216240

Similar questions