https://github.com/ahmed-roshdy-1/lab-3_7
problem-solving using data structures
https://github.com/ahmed-roshdy-1/lab-3_7
c data-structures
Last synced: 8 months ago
JSON representation
problem-solving using data structures
- Host: GitHub
- URL: https://github.com/ahmed-roshdy-1/lab-3_7
- Owner: Ahmed-Roshdy-1
- Created: 2021-06-11T19:37:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-11T20:25:40.000Z (over 4 years ago)
- Last Synced: 2025-01-12T15:46:18.392Z (9 months ago)
- Topics: c, data-structures
- Language: C
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lab-3_7
### problem-solving using data structures### Data Structure using c :
## the requirement
### We (as a user for StackADT) have a stack holding group_ids. Each group_id consists of two parts section code and group code within his section. Number of groups inside the section is maximum 10. section_code=group_id/10, group_code=group_id%10. Construct two stacks; one stack holds section codes while the other holds group codes.
##