Algorithm Demonstrator Guide

Vishal Rashmika published on
2 min, 244 words

Categories: Guide

What is Algorithm Demonstrator ?

Algorithm Demonstrator is a software designed in order to demonstrate how algorithms work. This software contains demonstrations for:

  1. Bubble Sort
  2. Insertion Sort
  3. Linear Search
  4. 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,

  1. The text file should not contain any strings/text or decimal values.
  2. The text file should only be stored in the .txt file format.
  3. The text file must only contain 10 integers (whole numbers).
  4. 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
  1. First decide whether you are using the random number set or importing a number set from a file
  1. Click the "Select" button
  2. From the next window choose which algorithm you want to see the demonstration for,
  1. 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