#链表 #算法 #递归 #可迭代 # # #元素

substack

为堆分配避免的递归算法提供栈限制的可迭代链表

3 个稳定版本

1.1.0 2023 年 11 月 15 日
1.0.1 2023 年 10 月 31 日

#1156 in 算法


用于 orchidlang

MIT 许可证

8KB
142

在递归算法中提供栈链表以避免堆分配

use substack::Substack;

/// Walk a disjoint set and find the representative of an element, or return None if the
/// set contains a loop
fn find_value(alias_map: &[usize], idx: usize, prev: Substack<usize>) -> Option<usize> {
  match () {
    () if alias_map[idx] == idx => Some(idx),
    () if prev.iter().any(|i| *i == idx) => None,
    () => find_value(alias_map, alias_map[idx], prev.push(idx)),
  }
}

const map: &[usize] = &[2, 4, 1, 5, 1, 5];

assert_eq!(find_value(map, 0, Substack::Bottom), None);
assert_eq!(find_value(map, 3, Substack::Bottom), Some(5));

无运行时依赖