Added Stacks + Implementations + Queue Intf

This commit is contained in:
2023-11-04 22:59:52 +02:00
parent 94523883fb
commit c7bab1c7fa
8 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package org.lumijiez.intf;
public interface LumiQueue<E> {
void enqueue(E item);
E dequeue();
E peek();
boolean isEmpty();
int size();
void clear();
}