You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param first Random access iteartor of the first position.
26
+
* @param first Random access iterator of the first position.
27
27
* @param last Random access iterator of the last position.
28
28
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
29
29
*/
@@ -54,7 +54,7 @@ export function make_heap<
54
54
/**
55
55
* Push an element into heap.
56
56
*
57
-
* @param first Random access iteartor of the first position.
57
+
* @param first Random access iterator of the first position.
58
58
* @param last Random access iterator of the last position.
59
59
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
60
60
*/
@@ -77,7 +77,7 @@ export function push_heap<
77
77
/**
78
78
* Pop an element from heap.
79
79
*
80
-
* @param first Random access iteartor of the first position.
80
+
* @param first Random access iterator of the first position.
81
81
* @param last Random access iterator of the last position.
82
82
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
83
83
*/
@@ -106,7 +106,7 @@ export function pop_heap<
106
106
/**
107
107
* Test whether a range is heap.
108
108
*
109
-
* @param first Bi-directional iteartor of the first position.
109
+
* @param first Bi-directional iterator of the first position.
110
110
* @param last Bi-directional iterator of the last position.
111
111
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
112
112
*
@@ -131,7 +131,7 @@ export function is_heap<
131
131
/**
132
132
* Find the first element not in heap order.
133
133
*
134
-
* @param first Bi-directional iteartor of the first position.
134
+
* @param first Bi-directional iterator of the first position.
135
135
* @param last Bi-directional iterator of the last position.
136
136
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
137
137
*
@@ -164,7 +164,7 @@ export function is_heap_until<
164
164
/**
165
165
* Sort elements of a heap.
166
166
*
167
-
* @param first Random access iteartor of the first position.
167
+
* @param first Random access iterator of the first position.
168
168
* @param last Random access iterator of the last position.
169
169
* @param comp A binary function predicates *x* element would be placed before *y*. When returns `true`, then *x* precedes *y*. Default is {@link less}.
0 commit comments