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

https://github.com/oxtna/sbd

External sorter and ISF
https://github.com/oxtna/sbd

cpp database external-sorting showcase

Last synced: 8 months ago
JSON representation

External sorter and ISF

Awesome Lists containing this project

README

          

# SBD

## External Sorter

An external sorting algorithm using a K-way merging approach to sort large data files.

Records are sets containing up to 15 integers. They are ordered by the maximum of contained integers.

## ISF

An Indexed Sequential File is a data storage system offering
quick access times and reducing disk operations.

Requires the following files: `index.bin`, `data.bin`, `overflow.bin`.

Commands implemented:

- `list;`
- `show ;`
- `insert { };`
- `update { };`
- `sort;`
- `status;`

Values must be comma separated integers (trailing comma is a syntax error).
Multiple commands can be entered at once.