Linked list consists of data nodes each pointing to next in the list .An array consist of contiguous chunk memory of predetermined size
array,linklist,queue,stack,tree,graph etc...
A loop usually referred to the program flow control with possible repetition of executing the same codes, an array is an abstraction of fixed size container. 2 different concepts.
Arrays are basic structures wherein one or more elements exist "side by side" and are of the same "type". An "integer" array is an array whose elements are all of an integer type which has no fractional component. A "character" array is an array which contains nothing but character types. A "floating point" array contains elements that have both an integer and fractional portion. Simply put, they are arrays of particular types.
An array stores several values - for example, several numbers - using a single variable name. The programmer can access the individual values with a subscript, for example, myArray[0], myArray[5]. The subscript can also be a variable, for example, myArray[i], making it easy to write a loop that processes all the elements of an array, or some of them, one after another.
Array is collection of data items of same data type.Enum is collection of data items of different data type.
array,linklist,queue,stack,tree,graph etc...
In a circular linked list every node is connected to another node. In a non-circular linked list. There are definitely starting and ending nodes are lacking an incoming and outgoing link, respectively.
Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values
When we declare an array of characters it has to be terminated by the NULL , but termination by NULL in case of string is automatic.
Vectors are thread safe but array lists are not. Hence array lists are faster than Vectors.
The minimum absolute difference between any two elements in a given array is the smallest positive number that can be obtained by subtracting one element from another in the array.
A Magician has a cunning array of stunts ...........................................................................
Using and gate - pla is programmable while pal is fixed
List is not sync'd as a vector is.
A numericial array is an array with keys made up of only integers. An associative array is an array with keys made up of anything that is not an integer. In some languages, it is possible to mix integer keys and non-integer keys into a mixed array.
arrayarray_diff(array$array1,array$array2[,array$...] )
Yes, with limitations... If you have the address of a node in the linklist, you can insert a node after that node. If you need to insert the node before that node, you need to traverse the list, unless the linklist is a doubly-linkedlist