https://github.com/bunyaminyavuz/datastructuresprojects
2 programs I made in the C programming language with the theoretical and technical information I learned in the data structures and algorithms course at the university.
https://github.com/bunyaminyavuz/datastructuresprojects
algorithms-and-data-structures binary-search-tree c codeblocks-ide linked-list
Last synced: 23 days ago
JSON representation
2 programs I made in the C programming language with the theoretical and technical information I learned in the data structures and algorithms course at the university.
- Host: GitHub
- URL: https://github.com/bunyaminyavuz/datastructuresprojects
- Owner: BunyaminYavuz
- Created: 2023-02-22T21:44:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-09T09:51:09.000Z (about 3 years ago)
- Last Synced: 2025-02-24T15:52:18.788Z (over 1 year ago)
- Topics: algorithms-and-data-structures, binary-search-tree, c, codeblocks-ide, linked-list
- Language: C
- Homepage: https://bunyaminyavuz.github.io/DataStructuresProjects/
- Size: 76.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# *Data Structures Projects*
| Name Of The Project | Main Structure |
| ------------- |:-------------:|
| Hospital Management System | Linked List |
| Words BST | Binary Search Tree |
## *1-) Hospital Management System*

### You are able to do:
#### <1> Add New Record
#### <2> Search Record (with name, surname, and polyclinic name)
#### <3> Delete Record (with name, surname, and polyclinic name)
#### <4> Sort Records By Name
#### <5> Sort Records By Surname
#### <6> Sort Records By Polyclinic Name
#### <7> Exit
## *2-) Words BTS*

### Footnote: Words are taken from Words.txt file inside the folder.
### You are able to do(:
#### 1-) Print Different Words (with the number of repetitions)
#### 2-) Print Different Words in Alphabetical Order (with the number of repetitions)
#### 3-) Search word (presented with repetitions and depth)
#### 4-) Exit