toggle menu
KAHelpers
androidJvm
switch theme
search in API
dataStructuresAndAlgorithms
/
dev.funkymuse.datastructuresandalgorithms.queue.priority
/
AbstractPriorityQueueArrayList
Abstract
Priority
Queue
Array
List
abstract
class
AbstractPriorityQueueArrayList
<
T
>
:
Queue
<
T
>
Inheritors
CustomPriorityQueueArrayList
ComparablePriorityQueueArrayList
ComparatorPriorityQueueArrayList
Members
Members & Extensions
Constructors
Abstract
Priority
Queue
Array
List
Link copied to clipboard
constructor
(
)
Properties
count
Link copied to clipboard
open
override
val
count
:
Int
is
Empty
Link copied to clipboard
abstract
val
isEmpty
:
Boolean
is
Not
Empty
Link copied to clipboard
open
val
isNotEmpty
:
Boolean
Functions
dequeue
Link copied to clipboard
open
override
fun
dequeue
(
)
:
T
?
enqueue
Link copied to clipboard
open
override
fun
enqueue
(
element
:
T
)
:
Boolean
peek
Link copied to clipboard
open
override
fun
peek
(
)
:
T
?
reverse
Link copied to clipboard
fun
<
T
>
Queue
<
T
>
.
reverse
(
)
sort
Link copied to clipboard
abstract
fun
sort
(
)
to
String
Link copied to clipboard
open
override
fun
toString
(
)
:
String