Skip to main content

SbtNode

Struct SbtNode 

Source
pub struct SbtNode<T>
where T: Unsigned,
{ pub l: URational<T>, pub r: URational<T>, }

Fields§

§l: URational<T>§r: URational<T>

Implementations§

Source§

impl<T> SbtNode<T>
where T: Unsigned,

Source

pub fn to_path(&self) -> SbtPath<T>

Source

pub fn lca<I, J>(path1: I, path2: J) -> Self
where I: IntoIterator<Item = T>, J: IntoIterator<Item = T>,

Examples found in repository?
crates/library_checker/src/number_theory/stern_brocot_tree.rs (line 60)
19pub fn stern_brocot_tree(reader: impl Read, mut writer: impl Write) {
20    let s = read_all_unchecked(reader);
21    let mut scanner = Scanner::new(&s);
22    scan!(scanner, t);
23    for _ in 0..t {
24        scan!(scanner, query: Query);
25        match query {
26            Query::EncodePath { a, b } => {
27                let path = SbtPath::from(URational::new(a, b));
28                let len = if path.path.first() == Some(&0) {
29                    path.path.len() - 1
30                } else {
31                    path.path.len()
32                };
33                write!(writer, "{}", len).ok();
34                for (i, count) in path.into_iter().enumerate() {
35                    if count == 0 {
36                        continue;
37                    }
38                    if i % 2 == 0 {
39                        write!(writer, " R {}", count).ok();
40                    } else {
41                        write!(writer, " L {}", count).ok();
42                    }
43                }
44                writeln!(writer).ok();
45            }
46            Query::DecodePath { path, .. } => {
47                let node: SbtNode<u32> = if path.first().is_some_and(|t| t.0 == 'L') {
48                    [0].into_iter()
49                        .chain(path.into_iter().map(|(_, c)| c))
50                        .collect()
51                } else {
52                    path.into_iter().map(|(_, c)| c).collect()
53                };
54                let val = node.eval();
55                writeln!(writer, "{} {}", val.num, val.den).ok();
56            }
57            Query::Lca { a, b, c, d } => {
58                let path1 = SbtPath::from(URational::new(a, b));
59                let path2 = SbtPath::from(URational::new(c, d));
60                let val = SbtNode::lca(path1, path2).eval();
61                writeln!(writer, "{} {}", val.num, val.den).ok();
62            }
63            Query::Ancestor { k, a, b } => {
64                let mut path = SbtPath::from(URational::new(a, b));
65                let depth = path.depth();
66                if k <= depth {
67                    path.up(depth - k);
68                    let val = path.eval();
69                    writeln!(writer, "{} {}", val.num, val.den).ok();
70                } else {
71                    writeln!(writer, "-1").ok();
72                }
73            }
74            Query::Range { a, b } => {
75                let node = SbtPath::from(URational::new(a, b)).to_node();
76                writeln!(
77                    writer,
78                    "{} {} {} {}",
79                    node.l.num, node.l.den, node.r.num, node.r.den
80                )
81                .ok();
82            }
83        }
84    }
85}

Trait Implementations§

Source§

impl<T> Clone for SbtNode<T>
where T: Unsigned + Clone,

Source§

fn clone(&self) -> SbtNode<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for SbtNode<T>
where T: Unsigned + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> From<URational<T>> for SbtNode<T>
where T: Unsigned,

Source§

fn from(r: URational<T>) -> Self

Converts to this type from the input type.
Source§

impl<T> FromIterator<T> for SbtNode<T>
where T: Unsigned,

Source§

fn from_iter<I>(iter: I) -> Self
where I: IntoIterator<Item = T>,

Creates a value from an iterator. Read more
Source§

impl<T> PartialEq for SbtNode<T>
where T: Unsigned + PartialEq,

Source§

fn eq(&self, other: &SbtNode<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> SternBrocotTree for SbtNode<T>
where T: Unsigned,

Source§

type T = T

Source§

fn root() -> Self

Source§

fn is_root(&self) -> bool

Source§

fn eval(&self) -> URational<Self::T>

Source§

fn down_left(&mut self, count: Self::T)

Source§

fn down_right(&mut self, count: Self::T)

Source§

fn up(&mut self, count: Self::T) -> Self::T

Returns the remaining count after moving up.
Source§

impl<T> Copy for SbtNode<T>
where T: Unsigned + Copy,

Source§

impl<T> Eq for SbtNode<T>
where T: Unsigned + Eq,

Source§

impl<T> StructuralPartialEq for SbtNode<T>
where T: Unsigned,

Auto Trait Implementations§

§

impl<T> Freeze for SbtNode<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for SbtNode<T>
where T: RefUnwindSafe,

§

impl<T> Send for SbtNode<T>
where T: Send,

§

impl<T> Sync for SbtNode<T>
where T: Sync,

§

impl<T> Unpin for SbtNode<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for SbtNode<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for SbtNode<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToArrayVecScalar for T

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.