C Everything
This is a C repository containing a curated set of generic data structures and algorithm.
|
Contains sample use cases/test of different data structure operations. More...
#include "common.h"
#include "link_list.h"
#include "stack.h"
#include "queue.h"
#include "heap.h"
#include "tree.h"
#include "graph.h"
#include "array.h"
#include "disjoint_set.h"
Go to the source code of this file.
Functions | |
void | test_disjoint_set () |
Test Disjoint set routines (Merge-Find) More... | |
void | test_graph () |
Test Graph routines More... | |
void | test_array () |
Test Array search and sort routines More... | |
void | test_tree () |
Test Tree routines More... | |
void | test_heap () |
Test Heap routines More... | |
void | test_queue () |
Test Queue routines More... | |
void | test_stack () |
Test stack routines More... | |
void | test_linklist () |
Test link list routines More... | |
int | main (int argc, char *argv[]) |
Main Driver test More... | |
Contains sample use cases/test of different data structure operations.
Definition in file test.c.
int main | ( | int | argc, |
char * | argv[] | ||
) |
void test_array | ( | ) |
void test_disjoint_set | ( | ) |