Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
TEXT
25
ArrayQueue
Guest on 13th March 2023 01:22:40 PM
public ArrayQueue (int initialCapacity)
{
rear = 0;
queue = (T[])(new Object[initialCapacity]);
}
Raw Paste
public ArrayQueue (int initialCapacity) { rear = 0; queue = (T[])(new Object[initialCapacity]); }
Login
or
Register
to edit or fork this paste. It's free.