pofk_algorithm 0.0.3

A collection of efficient algorithms implemented in Rust for real-world projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod longest_substring_without_repeat;
pub mod top_k_frequent;
pub mod most_frequent_element;
pub mod lru_cache;
pub mod two_sum_map;
pub mod anagram_checker;
pub mod first_non_repeated;
pub mod grouping_elements;
pub mod frequency_count;
pub mod has_duplicates;
pub mod find_union;
pub mod find_intersection;
pub mod set_difference;
pub mod is_frequency_unique;
pub mod has_two_sum;
pub mod has_unique_window;