Your are here: Home > Posts Tagged With arrays
Difference Between arrays
Difference Between Pointer and Array
// Jun 28th, 2011
Pointer vs Array
A pointer is a data type that holds a reference to a memory location (i.e. a pointer variable stores an address of a memory location in which some data is stored). Arrays are the most commonly used data structure to store a collection of elements. Most programming languages provide methods to easily...
Difference Between Arrays and Arraylists
// Jun 27th, 2011
Arrays vs Arraylists
Arrays are the most commonly used data structure to store a collection of elements. Most programming languages provide methods to easily declare arrays and access elements in the arrays. An arraylist can be seen as a dynamic array, which can grow in size. Due to this reason, the programmer...
Difference Between Linear and Nonlinear Data Structures
// May 8th, 2011
Linear vs Nonlinear Data Structures
A data structure is a method for organizing and storing data, which would allow efficient data retrieval and usage. Linear data structure is a structure that organizes its data elements one after the other. Linear data structures are organized in a way similar to how the computer’s...
Difference Between Arrays and Linked Lists
// Apr 18th, 2011
Arrays vs Linked Lists
Arrays are the most commonly used data structure to store collection of elements. Most programming languages provide methods to easily declare arrays and access elements in the arrays. Linked list, more precisely singly-linked list, is also a data structure that can be used to store collection...

