Skip to content

Commit 4ff9f26

Browse files
committed
treap: treap
1 parent e5f7522 commit 4ff9f26

File tree

3 files changed

+531
-0
lines changed

3 files changed

+531
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ license = "MIT"
66
authors = ["Соджиро Кояма <[email protected]> "]
77
description = "my competitive programming template"
88
[dependencies]
9+
rand = { version = "=0.7.3", features = ["small_rng"] }

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
pub mod bounds;
22
pub mod cumsum;
33
pub mod euclidean;
4+
pub mod treap;
45
pub mod trie;
56
pub mod union_find;

0 commit comments

Comments
 (0)