Skip to content

Commit

Permalink
move to data structures
Browse files Browse the repository at this point in the history
  • Loading branch information
lrvideckis committed Jul 17, 2024
1 parent fdcdc65 commit 482e6d1
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ path = "examples/helpers/lis_handmade.rs"

[[example]]
name = "range_container_aizu"
path = "examples/helpers/range_container_aizu.rs"
path = "examples/data_structures/range_container_aizu.rs"

[[example]]
name = "range_container_handmade"
path = "examples/helpers/range_container_handmade.rs"
path = "examples/data_structures/range_container_handmade.rs"

[[example]]
name = "mono_st"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/problems/DSL_2_D

use proconio::input;
use programming_team_code_rust::helpers::range_container::RangeContainer;
use programming_team_code_rust::data_structures::range_container::RangeContainer;

fn main() {
input! {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// verification-helper: PROBLEM https://onlinejudge.u-aizu.ac.jp/courses/lesson/2/ITP1/all/ITP1_1_A

use programming_team_code_rust::helpers::range_container::RangeContainer;
use programming_team_code_rust::data_structures::range_container::RangeContainer;
use rand::{thread_rng, Rng};
use std::collections::BTreeMap;

Expand Down
1 change: 1 addition & 0 deletions src/data_structures/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pub mod binary_trie;
pub mod disjoint_rmq;
pub mod fenwick;
pub mod lazy_seg_tree;
pub mod range_container;
pub mod rmq;
pub mod seg_tree;
pub mod trie;
File renamed without changes.
1 change: 0 additions & 1 deletion src/helpers/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//! # Helpers
pub mod compress;
pub mod lis;
pub mod range_container;
pub mod unsafe_recursive_closure;

0 comments on commit 482e6d1

Please sign in to comment.