Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bpavan16/phonesimulator-dsa-project

This is a Data Structures and Algorithms (DSA) course project created during the 3rd semester of (BE)
https://github.com/bpavan16/phonesimulator-dsa-project

algorithms course-project dsa-algorithm dsa-implementations

Last synced: about 16 hours ago
JSON representation

This is a Data Structures and Algorithms (DSA) course project created during the 3rd semester of (BE)

Awesome Lists containing this project

README

        

# Phone Simulator

## Overview
The Phone Simulator is a C application that simulates basic phone functionalities using various data structures such as hashtables, heaps, graphs, linked lists, stacks, queues, and trees

## Project Structure
```
phone-simulator
├── src
│ ├── main.c
│ ├── data_structures
│ │ ├── hashtable.c
│ │ ├── hashtable.h
│ │ ├── heap.c
│ │ ├── heap.h
│ │ ├── graph.c
│ │ ├── graph.h
│ │ ├── linkedlist.c
│ │ ├── linkedlist.h
│ │ ├── queue.c
│ │ ├── queue.h
│ │ ├── stack.c
│ │ ├── stack.h
│ │ ├── tree.c
│ │ └── tree.h
│ ├── simulator
│ │ ├── phone.c
│ │ └── phone.h
│ └── utils
│ ├── common.c
│ └── common.h
├── Makefile
└── README.md
```

## Setup Instructions
1. Clone the repository:
```
git clone
```
2. Navigate to the project directory:
```
cd phone-simulator
```

## Usage
After building the project, run the executable to start the phone simulator:
```
gcc main.c
./phone-simulator.out
```

## Contributing
Feel free to submit issues or pull requests for improvements and enhancements.