Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danfalcon225/bank_application

Current project covers a basic data structure techniques such as: search, sort, select, add etc.
https://github.com/danfalcon225/bank_application

data-structures sort

Last synced: about 1 month ago
JSON representation

Current project covers a basic data structure techniques such as: search, sort, select, add etc.

Awesome Lists containing this project

README

        

# Bank_Application

Current project is covering a basic data structure techniques such as: search, sort, select, add etc.
The main data structure in used is LinkedList

"Bank" class - uses a LinkedList methods imported from Collection FrameWork
"MyBank" class provides a manually coded data structure which imitates a LinkedList functionality.

In order to swich between those two classes we need to go to the "MainMenu" and comment and uncomment relevant piece of code.

For "Bank" class
static BankInterface MyList = new Bank();

For "MyBank" class
static BankInterface MyList = new MyBank();

Methods in each class has similar names and all of them inherited through the interface class - "BankInterface"