https://github.com/vevdokimovm/string-operations-cpp
C++ lab: custom String class built on sequence abstractions with sorting and searching
https://github.com/vevdokimovm/string-operations-cpp
algorithms cpp data-structures string
Last synced: about 3 hours ago
JSON representation
C++ lab: custom String class built on sequence abstractions with sorting and searching
- Host: GitHub
- URL: https://github.com/vevdokimovm/string-operations-cpp
- Owner: vevdokimovm
- License: mit
- Created: 2020-03-25T20:26:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-04-20T20:34:20.000Z (2 months ago)
- Last Synced: 2026-04-20T22:28:00.570Z (2 months ago)
- Topics: algorithms, cpp, data-structures, string
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# string-operations-cpp
C++ lab — **String data structure and operations**. Implements a custom string class built on top of sequence abstractions (Dynamic Array, Linked List), with sorting and searching capabilities.
University lab.
## Implemented
- `StringList` / `StringVector` — string containers
- Operations: insert, delete, find, sort, concatenate
- Generic sequence base (`ISequence`, `ArraySequence`, `ListSequence`)
## Build
```bash
mkdir build && cd build
cmake ..
make
./lab
```
## License
MIT