Skip to main content

MinHeap

Struct MinHeap 

Source
pub struct MinHeap<T: Ord> { /* private fields */ }
Expand description

Min-heap: eng kichik element har doim tepada.

G’oya: to’liq binar daraxtni massivda saqlaymiz. i -indeksdagi tugun uchun:

  • ota: (i - 1) / 2
  • chap farzand: 2i + 1, o’ng farzand: 2i + 2

Yagona qoida (heap sharti): ota farzandidan katta emas. Shu qoidani buzmaslik uchun ikkita amal bor: sift_up (qo’shishda) va sift_down (o’chirishda). Ikkalasi ham daraxt balandligi bo’ylab yuradi → O(log n).

       1              massiv: [1, 3, 5, 7, 9, 8]
     /   \
    3     5           ota(4) = (4-1)/2 = 1  → qiymati 3
   / \   /
  7   9 8

Qayerda ishlatiladi: Dijkstra, A*, Huffman, “eng katta K ta element”, vazifalar rejalashtiruvchisi (scheduler).

Max-heap kerakmi? std::cmp::Reverse bilan o’rang yoki qiymatlarni manfiylang.

§Misol

use rust_algorithms::data_structures::MinHeap;

let mut h = MinHeap::new();
for x in [5, 1, 8, 3] {
    h.push(x);
}
assert_eq!(h.peek(), Some(&1));
assert_eq!(h.pop(), Some(1));
assert_eq!(h.pop(), Some(3));
assert_eq!(h.len(), 2);

Implementations§

Source§

impl<T: Ord> MinHeap<T>

Source

pub fn new() -> Self

Bo’sh heap.

Source

pub fn heapify(data: Vec<T>) -> Self

Tayyor vektordan heap quradi — O(n) (n log n emas!).

Pastdan yuqoriga sift_down qilish n log n emas, chiziqli vaqt beradi: tugunlarning yarmi bargda (0 qadam), choragi bir qavat yuqorida (1 qadam)…

§Misol
use rust_algorithms::data_structures::MinHeap;

let h = MinHeap::heapify(vec![9, 4, 7, 1, 2]);
assert_eq!(h.peek(), Some(&1));
Source

pub fn push(&mut self, item: T)

Element qo’shadi. O(log n).

Source

pub fn pop(&mut self) -> Option<T>

Eng kichik elementni olib chiqadi. O(log n).

Source

pub fn peek(&self) -> Option<&T>

Eng kichik elementga qaraydi. O(1).

Source

pub fn len(&self) -> usize

Elementlar soni.

Source

pub fn is_empty(&self) -> bool

Bo’shmi?

Source

pub fn into_sorted_vec(self) -> Vec<T>

Heapni tartiblangan vektorga aylantiradi (heap sort). O(n log n).

Trait Implementations§

Source§

impl<T: Clone + Ord> Clone for MinHeap<T>

Source§

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

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + Ord> Debug for MinHeap<T>

Source§

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

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

impl<T: Default + Ord> Default for MinHeap<T>

Source§

fn default() -> MinHeap<T>

Returns the “default value” for a type. Read more
Source§

impl<T: Ord> FromIterator<T> for MinHeap<T>

Source§

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

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<T> Freeze for MinHeap<T>

§

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

§

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

§

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

§

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

§

impl<T> UnsafeUnpin for MinHeap<T>

§

impl<T> UnwindSafe for MinHeap<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> 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.