Algorithm Demonstrator Guide
What is Algorithm Demonstrator ?
Algorithm Demonstrator is a software designed in order to demonstrate how algorithms work. This software contains demonstrations for:
- Bubble Sort
- Insertion Sort
- Linear Search
- Binary Search
Usage guide
The algorithm demonstrator support both generating a random number set as well as importing a number set from a text file. The user can choose the option they prefer. If a text file is to be imported the text file should satisfies some conditions,
- The text file should not contain any strings/text or decimal values.
- The text file should only be stored in the .txt file format.
- The text file must only contain 10 integers (whole numbers).
- The integers should only be seperated by line breaks.
Example for a such text file:
12
8
2
11
16
20
3
4
2
1
- First decide whether you are using the random number set or importing a number set from a file
- Click the "Select" button
- From the next window choose which algorithm you want to see the demonstration for,
- If you selected a sort algorithm press "sort" button to see the demonstration, or else if you selected a searching algorithm press "search" button to see the demonstration