Repository to share code for the CS221 Data Structures course.
The week-wise contents will be listed here. The codes for each week will be uploaded in the respective week folder:
- Week01:
- Compilation pipeline.
- Command line arguments.
- Week02:
- File I/O.
- Introduction to structs.
- Week03:
- Dot and arrow operators. Array of structs.
- Passing structs of functions.
- Week04:
- Linked list introduction. Adding elements to start and end.
- Linkded list: adding elements in middle. Deleting elements.
- Week05:
- Doubly linked list.
- Stack.