About the #data-structures series
The #data-structures series is a collection of posts about reimplemented data structures in JavaScript.
If you are not familiar with data structures, a quick introduction and the full list of reimplemented data structures can be found in the introduction post of the series on data structures in JavaScript.
If you feel comfortable with the concept of each data structure and only want to see the code, have a look at the summary post of the series. It removes all explanations and contains only the JavaScript code for all data structures discussed in the series.
Get the code on Github
Of course, all the code can also be found on Github in the repository data-structures-in-javascript.
The Array data structure
Definition
An Array data structure, or simply an Array, is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key. The simplest type of data structure is a linear array, also called one-dimensional array. From Wikipedia
Arrays are among the oldest and most important data structures and are used by every program. They are also used to implement many other data structures.
Complexity
Average | |||
---|---|---|---|
Access | Search | Insertion | Deletion |
O(1) | O(n) | O(1) | O(n) |
To get a full overview of the time and space complexity of the Array data structure, have a look to this excellent Big O cheat sheet.
The code
function MyArray() {
this.array = [];
}
MyArray.prototype.add = function(data) {
this.array.push(data);
};
MyArray.prototype.remove = function(data) {
this.array = this.array.filter(function(current) {
return current !== data;
});
};
MyArray.prototype.search = function(data) {
var foundIndex = this.array.indexOf(data);
if(~foundIndex) {
return foundIndex;
}
return null;
};
MyArray.prototype.getAtIndex = function(index) {
return this.array[index];
};
MyArray.prototype.length = function() {
return this.array.length;
};
MyArray.prototype.print = function() {
console.log(this.array.join(' '));
};
var array = new MyArray();
array.add(1);
array.add(2);
array.add(3);
array.add(4);
array.print(); // => 1 2 3 4
console.log('search 3 gives index 2:', array.search(3)); // => 2
console.log('getAtIndex 2 gives 3:', array.getAtIndex(2)); // => 3
console.log('length is 4:', array.length()); // => 4
array.remove(3);
array.print(); // => 1 2 4
array.add(5);
array.add(5);
array.print(); // => 1 2 4 5 5
array.remove(5);
array.print(); // => 1 2 4