aaron-jaeger / binary-search-tree-demo-cc

Demonstrates how to implement a binary search tree in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Binary Search Tree Demo

This is a simple binary search tree demonstration. Some of the concepts included inheritence, templating, and recursion.

Getting Started

Pull the project onto your Linux machine and run make in the root directory of the project.

Aaron@DESKTOP:~/binary_search_tree_demo$ make

Change to the bin directory and run the executable.

Aaron@DESKTOP:~/binary_search_tree_demo/bin$ ./BinarySearchTreeDemo

Prerequisites

You'll need:

  • g++/gcc

  • make

  • c++11 Standard Library (minimum)

Author

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgements

Thanks to:

About

Demonstrates how to implement a binary search tree in C++

License:MIT License


Languages

Language:C++ 82.9%Language:Makefile 17.1%