Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
#include <iostream>
#include <array>
#include <cassert>
Classes | |
struct | data_structures::list_array::list< N > |
Structure of List with supporting methods. More... | |
Namespaces | |
namespace | data_structures |
for IO operations | |
namespace | list_array |
Functions for Dynamic Array algorithm. | |
Functions | |
static void | test () |
Test implementations. | |
int | main () |
Main function. | |
The list_array is the implementation of list represented using array. We can perform basic CRUD operations as well as other operations like sorting etc.
It implements various method like insert, sort, search etc. efficiently. You can select the operation and methods will do the rest work for you. You can insert element, sort them in order, search efficiently, delete values and print the list.
int main | ( | void | ) |
|
static |
Test implementations.