https://github.com/jvillegasd/lab2datasctructure
In my opinion, a simple Lab
https://github.com/jvillegasd/lab2datasctructure
Last synced: 7 months ago
JSON representation
In my opinion, a simple Lab
- Host: GitHub
- URL: https://github.com/jvillegasd/lab2datasctructure
- Owner: jvillegasd
- Created: 2017-05-04T16:12:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T20:54:38.000Z (over 8 years ago)
- Last Synced: 2025-02-18T10:58:22.423Z (8 months ago)
- Language: Java
- Size: 361 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lab2 DataSctructure
In my opinion, a simple LabThe lab (Laboratory) solution was created with a friend (Javier Valencia) and me. This is very simple:
The lab consist in a bank that has all the movement records in a double linked list, all the nodes must has this information:
+ Date
+ Account number
+ Amount
You have to create an interactive menu with this options:1. Query:
* Calculate deposit amount realize in 2 given dates.
* Calculate extracted money until current date.
* Calculate the balance of a given account.
2. Account cancelation: Eliminate the corresponding node of the account,for that, the balance must equals zero.
3. Account creation: Create a new node with necessary information and insert in the corresponding place (double linked list must be organized,don't create a auxiliar data structure for organize this, you can choose the order of organitation: upward or falling). The minimun amount to deposit in new account is 100000 COP$.