https://github.com/udattam/school
A basic file management system for schools written in Java.
https://github.com/udattam/school
algorithms-and-data-structures java oops-in-java
Last synced: 3 months ago
JSON representation
A basic file management system for schools written in Java.
- Host: GitHub
- URL: https://github.com/udattam/school
- Owner: udattam
- Created: 2022-10-07T06:00:34.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-08T11:54:54.000Z (about 3 years ago)
- Last Synced: 2025-01-15T13:36:43.313Z (11 months ago)
- Topics: algorithms-and-data-structures, java, oops-in-java
- Language: Java
- Homepage: https://udattam.github.io/School
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# School
A basic file management system for schools written in Java.
## Table of Contents
- [Overview](#overview)
- [Features](#features)
- [Technologies](#technologies)
- [Setup](#setup)
- [Results](#results)
- [Contributing](#contributing)
## Overview
School is a basic file management system for schools. This helps teachers to manage the courses and study materials for their students.
## Features
- School has a list of teachers and students.
- Teachers can create subjects. Each subject can have multiple lessons. Each lesson may have multiple workbooks.
- A list of actions is attributed to each teacher.
- Action types are: ADD, DELETE, REORDER, MOVE
- Teachers can add, delete, reorder and move lessons and workbooks.
- Teachers can perform undo operations.
- A simple hashing technique is used to store the exact addresses of the nodes in the tree.
- We can use this hashed address to retrieve the exact node from the tree.
- The exact node obtained from the hashed address can be used to find the path from the root node to the exact node.
- The number of children for each node can be found.
## Technologies
- Java
- Object Oriented Programming(OOP)
- Data Structures(Tree, Queue, Stack, HashMap, ArrayList)
- Algorithms( Hashing, Tree Traversal, etc.)
## Setup
To run this project, you need to have Java installed on your system. Open the project in your favorite IDE and run the `Test.java` file to see the results. The main logic is in the `DigitalSchool.java` file. The `Test.java` file is used to test the main logic. The results are printed to `results.txt` file.
## Results
The results are located [here](./results.txt)
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
---
### Link to the project: [Github Repository](https://github.com/udattam/School)