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

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.

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*
![This is an image](https://media.licdn.com/dms/image/C5612AQHXpElnKlgFTA/article-cover_image-shrink_600_2000/0/1631271495780?e=2147483647&v=beta&t=G-v2giaPyk2MRBprIyIvJ5voiKmuq89bEH9F-MhPYak)
### 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*
![This is an image](https://www.happycoders.eu/wp-content/uploads/2021/06/balanced-binary-search-tree-dictionary-600x281.png)

### 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