-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Queue implementation #86
Comments
According to Javadoc these are the jdk-classes which implement AbstractQueue, ArrayBlockingQueue, ArrayDeque, ConcurrentLinkedDeque,
ConcurrentLinkedQueue, DelayQueue, LinkedBlockingDeque,
LinkedBlockingQueue, LinkedList, LinkedTransferQueue, PriorityBlockingQueue,
PriorityQueue, SynchronousQueue Many of them (like Which one would you prefer? Honestly, I'm afraid I'm misunderstanding your question. Maybe you're missing a method of interface Queue? Do you use the current version of the Online-IDE (https://www.online-ide.de) or the beta-version of the new one (https://new.online-ide.de)? |
We were trying using the new beta-version of the Online-IDE. |
I added Since the online IDE runs in the browser, both its compiler and its runtime library are coded in Javascript (more precisely: Typescript). If you are interested in the details you can find the sourcecode of the new online-ide compiler on github. |
Please implement the Queue interface. We are required by our teacher to use your tool for CS exams. Our current topic is Data Structure, and it's a little bit awkward and disruptive to create a workaround with Lists and LinkedLists just because there are no JDK 8 features included.
You can find the requests reference and usage
The text was updated successfully, but these errors were encountered: