Skip to content

pPanda-beta/libTreeSim

Repository files navigation

libTreeSim

A free library made with freeglut to simulate binary trees from command line programs written in c/c++.
Uses pthread, freeglut, openGl,... etc

#Usage Default structure should be like this :

typedef struct bintree
{
item d;
struct bintree *l;
struct bintree *r;
} tree;

To initialize :

init(&bst);

To redraw current state of binary tree

redraw();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages