Spf

Struct Spf 

Source
pub struct Spf { /* private fields */ }

Implementations§

Source§

impl Spf

A struct representing the smallest prime factor (SPF) computation.

Source

pub fn new(max_limit: usize) -> Spf

Creates a new Spf instance with a given maximum limit.

§Arguments
  • max_limit - The maximum limit up to which the smallest prime factors are computed.
§Returns

A new Spf instance with precomputed smallest prime factors up to max_limit.

Source

pub fn get_spf(&self, x: u64) -> u64

Retrieves the smallest prime factor of a given number.

§Arguments
  • x - The number for which the smallest prime factor is to be retrieved.
§Returns

The smallest prime factor of x.

§Panics

Panics if x is greater than the max_limit specified during the creation of the Spf instance.

Source

pub fn factorize(&self, x: u64) -> Vec<u64>

Factorizes a given number into its prime factors.

§Arguments
  • x - The number to be factorized.
§Returns

A vector containing the prime factors of x.

§Panics

Panics if x is greater than the max_limit specified during the creation of the Spf instance.

§Complexity

The factorization process takes O(log n) time after the SPF computation.

Auto Trait Implementations§

§

impl Freeze for Spf

§

impl RefUnwindSafe for Spf

§

impl Send for Spf

§

impl Sync for Spf

§

impl Unpin for Spf

§

impl UnwindSafe for Spf

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> 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, 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.