Sorting algorithm

October 15, 2014

Created four sorting algorithms and tested their efficiency utilizing random numbers or numbers given through a txt file. The program utilizes a x point and y point and can be sorted to each one depending on input

Maze Search

October 15, 2014

Created a Recursive algorithm that searches through a maze until it detects the objective tile and creates a path to it

SurvivorDefense

October 15, 2014

• Created a multilevel Tower defense game with hostile entities and towers to defend against the hostile entities

Padlock

October 15, 2014

Created a vitual padlock. where you can set a combination and rotate the padlock to unlock it. Very interesting project worked on.

Decoder-Encoder Algorithm

October 15, 2014

Created an encoding and decoding algorithm utilizing binary trees. The program can take in coded input and give out the decoded output

Virtual Internet Grid

October 15, 2014

Created a virtual internet Grid utilizing set conditions. And tested it's utility with Junit

Infix-Postfix

October 15, 2014

Created an algorithm that takes in equations written in postfix and converted them into postfix. Utilizing stacks.