5个版本 (破坏性)
0.4.0 | 2021年3月17日 |
---|---|
0.3.0 | 2021年3月2日 |
0.2.0 | 2021年3月2日 |
0.1.0 | 2021年2月27日 |
0.0.0 | 2021年2月25日 |
在文本处理类别中排名1595
每月下载量41次
10KB
180 行
anagram
一组字母重组实用函数集合
安装
您可以通过将其添加到Cargo.toml文件中安装此crate
anagram = "0.3.0"
示例
use anagram::{count, get_next, is_anagram, occurences};
fn main() {
// count how many anagrams can be formed from a given word
let anagram_count = count("ordeals");
assert_eq!(anagram_count, 5040);
// count the number of occurences of an anagram in a given word
let occur = occurences("helloworldhello", "ll");
assert_eq!(occur, 2);
// check if a word is an anagram of another word
let ok = is_anagram("rustiscool", "oolcsistru");
assert_eq!(ok, true);
// get the next lexicographically greater anagram
let next = get_next("abcdefg");
assert_eq!(next, "abcdegf");
// get all anagrams of a word
let mut word: String = String::from("abc");
for _ in 0..count(&word) {
// get next anagram
word = get_next(&word);
println!("{}", word);
}
}
依赖项
~215KB