Rust-Programming/str_sort
Sven Vogel 53dcfcb30b updated READMEs 2023-05-03 11:02:03 +02:00
..
src added exercise 2 'string sorting' 2023-04-22 18:17:01 +02:00
Cargo.toml added exercise 2 'string sorting' 2023-04-22 18:17:01 +02:00
README.md updated READMEs 2023-05-03 11:02:03 +02:00

README.md

String sorting

This repository contains a set of functions to sort the characters of a string. Various different functions are available:

  • sort the ascii characters only (unsafe but efficient)
  • sort the UTF-8 characters (requires memory allocation)
  • sort the UTF-8 characters (more complex implementation but efficient)

Licensed under GPLv2 or later, same as the entire repository