Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

queue

dequeue() {
    const item = this.elements[this.head];
    delete this.elements[this.head];
    this.head++;
    return item;
  }
 
PREVIOUS NEXT
Tagged: #queue
ADD COMMENT
Topic
Name
8+4 =