Coder Social home page Coder Social logo

array's Introduction

array<T>

A JavaScript + Python like array in C++.

Usage

To use this library, install buckaroo and buck. Once installed, initialize buckaroo in your project folder and run the following command:

# Add the latest version
buckaroo add github.com/iwatakeshi/array/
# Install the depenencies
buckaroo install

To run tests, run the following command:

buck test :test

You can also add a version constraint if you need to.

API

Constructor Performance Description
array() O(1) Initializes a new empty array.
array(n) O(1) Initializes a new array of size n.
array(n, value) O(n) Initializes a new array of size n with the given value.
array(list) O(n) Initializes a new array with list initialization.
Method Performance Description
unshift(value): void O(n) Adds a new value to the beginning of this array.
shift(): T O(1) Removes the value from the beginning of this array and returns it.
push(value): void O(1) Adds a new value to the end of this array.
pop(value): T O(1) Removes the value from the end of this array and returns it.
at(index): T O(1) Returns the element at the given index with bound checking.
at(index, value) O(1) Sets the value at the given index with bound checking.
for_each((value, index?) -> void): void O(n) Iterates through each value in this array.
filter((value, index?) -> bool): array<T> O(n) Filters this array and returns a new array based on a condition.
map((value, index?) -> T): array<T> O(n) Maps each value in this array and returns a new array of type T.
map<U>((value, index?) -> T): array<U> O(n) Maps each value in this array and returns a new array of type U.
reduce((accumulator, current, index?) -> T): T O(n) Reduces the values in this array into a single output value of type T.
reduce((accumulator, current, index?) -> T, initial): T O(n) Reduces the values in this array into a single output value of type T.
reduce<U>((accumulator, current, index?) -> U, initital): U O(n) Reduces the values in this array into a single output value of type U.
reverse(): array<T> O(n) Reverses the values in this array and returns a new array.
slice(index): array<T> O(n) Returns a new array with the values from the specified index.
slice(begin, end): array<T> O(n) Returns a new array with the values from the specified range.
join(): string O(n) Returns a string of this array using , as the default seperator.
join(seperator): string O(n) Returns a string of this array using a provided seperator.
length(): int O(1) Returns the number of elements in this array.
capacity(): int O(1) Returns the capacity of the array.
is_empty(): int O(1) Returns true if this array is empty.
begin(): iterator O(1) Returns an iterator pointing to the first element in the array.
end(): iterator O(1) Returns an iterator referring to the past-the-end element in the array container.
Operator Performance Description
a[index] O(1) Overloads [] to select elements from this array.
a + b O(n) Concantenates two arrays.
a += b O(n) Concantenates two arrays and assigns it to a.
a = { 1 } O(n) Assigns the values in a list to a.
a * n O(n^2) Repeats the values in this array by n times.
a *= n O(n^2) Repeats the values in this array by n times and assigns it to a.
ostream << a O(n) Outputs the contents of the array to the given output stream.

Example

#include <iostream>
#include <array.hpp>
using namespace stdlib;
using std::cout;
using std::endl;

int main() {
  array<int> a;
  
  // Insert elements at the end
  a.push(1);
  a.push(2);

  // Print out the elements
  cout << "a: " << a << endl;
  
  // Iterate through the array
  a.for_each([](auto x, auto i) {
    cout << "a: " << i << " - " << x << endl;
  });


  array<int> b;

  b.push(12);
  b.push(3);
  
  cout << "b: " << b << endl;

  // Concantenate two arrays
  // Note: It does not mutate 'a' or 'b'
  auto c = a + b;

  cout << "c (a + b): " << c << endl;

  // Concantenate and assign
  // Note: It does mutate 'a'
  a += c;

  cout << "a (a + c): " << a << endl;

  // Repeat the elements 'n' times
  cout << "b * 3: " << b * 3 << endl;

  // Insert the element to the front of the list
  a.unshift(100);

  cout << "a: " << a << endl;

  // Initialize with list initialization
  array<int> d = { 1, 2, 3, 4 };

  // Get a sub list within the range
  auto e = d.slice(1, 3)
  
  cout << "e: " << e << endl;

  // Get a sub list using a negative index
  auto f = d.slice(-1);

  cout << "f: " << f << endl;

  // Use a for-range loop to iterate through the array
  for (auto& n in f) {
    cout << f << endl;
  }

  return 0;
}

array's People

Contributors

iwatakeshi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.