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: 6 months ago
JSON representation
Current project covers a basic data structure techniques such as: search, sort, select, add etc.
- Host: GitHub
- URL: https://github.com/danfalcon225/bank_application
- Owner: DanFalcon225
- Created: 2022-01-28T19:25:59.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-03T20:26:47.000Z (about 4 years ago)
- Last Synced: 2025-10-14T08:32:07.899Z (6 months ago)
- Topics: data-structures, sort
- Language: Java
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"