manuelroth / dynArray

A vector with backward indexing using negative indices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A vector with backward indexing using negative indices

Many scripting languages allow dynamic arrays to be indexed with negative indices where a[-1] denotes the last element in the array and a[-size] the first element. The template class dynArray implements this functionality.

Project Setup for Cevelop

  1. Install Cevelop
  2. Open the repository as a workspace
  3. Import as existing projects into workspace

Build Project

You can use Eclipse to build the project or the provided makefile.

make

Run Tests

We use CUTE for our unit tests. To run the tests you need to compile the tests and then simply run the executable. This will output the test results to the console and a XML file.

make test

About

A vector with backward indexing using negative indices


Languages

Language:C++ 99.8%Language:C 0.2%