All checks were successful
sample gradle build and test / build (pull_request) Successful in 1m35s
1.1 KiB
1.1 KiB
Data Structures
- Stacks:
- API
- Sample client
- Linear data structure
- Can have various implementations
- Should support (LIFO)
- Primitive implementation (Using arrays of primitive data types)
- Other implementations (Using linked lists)
- Queues:
- API
- sample Client
- Linear data structure.
- Can have various implementations.
- Should support FIFO.
- Primitive implementation (Using array of primitive data types)
- Other implementation (using linked lists)