Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.8K+ articles
Python
20.1K+ articles
Java
9.6K+ articles
Misc
8.2K+ articles
Java-Functions
4.2K+ articles
Java - util package
1.6K+ articles
Java-Collections
1.1K+ articles
java-basics
330+ articles
Java-LinkedBlockingDeque
49+ articles
Java-ConcurrentLinkedDeque
31+ articles
Java-ArrayDeque
39 posts
Recent Articles
Popular Articles
ArrayDeque removeFirst() Method in Java
Last Updated: 10 December 2018
The Java.util.ArrayDeque.removeFirst() method is used to remove the first element of the Deque.Syntax:Array_Deque.removeFirst()Parameters: The method does not take any par...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque removeFirstOccurrence() Method in Java
Last Updated: 10 December 2018
The java.util.ArrayDeque.removeFirstOccurrence(Object) method in Java is used to remove the first occurrence of a specific element from this deque. If the element is prese...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque removeLastOccurrence() Method in Java
Last Updated: 10 December 2018
The java.util.ArrayDeque.removeLastOccurrence(Object) method in Java is used to remove the last occurrence of a specific element from this deque. If the element is present...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque push() Method in Java
Last Updated: 10 December 2018
The Java.util.ArrayDeque.push(E element) method is used to push an element into the Deque. The operation is similar to the operation in the stack. The element gets pushed ...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque pop() Method in Java
Last Updated: 10 December 2018
The Java.util.ArrayDeque.pop() method in Java is used to pop an element from the deque. The element is popped from the top of the deque and is removed from the same.Syntax...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque toArray() Method in Java
Last Updated: 10 December 2018
The java.util.ArrayDeque.toArray() method is used to form an array of the same elements as that of the Deque. Basically, the method copies all the element from this deque ...
read more
Misc
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
ArrayDeque in Java
Last Updated: 14 February 2025
In Java, the ArrayDeque is a resizable array implementation of the Deque interface, which stands for double-ended queue. It allows elements to be added or removed from bot...
read more
Misc
Java
Java-Collections
Java - util package
Java-ArrayDeque
ArrayDeque spliterator() method in Java
Last Updated: 10 December 2018
The spliterator() method of ArrayDeque returns a Spliterator of the same elements as ArrayDeque but created Spliterator is late-binding and fail-fast. A late-binding Split...
read more
Java
Java-Collections
Java - util package
java-basics
Java-Functions
Java-ArrayDeque
ArrayDeque forEach() method in Java
Last Updated: 08 March 2024
The forEach() method of ArrayDeque is inherited from interface java.lang.Iterable. The operation is performed in the order of iteration if that order is specified by the m...
read more
Java
Java-Collections
Java - util package
java-basics
Java-Functions
Java-ArrayDeque
Java 8 | ArrayDeque removeIf() method in Java with Examples
Last Updated: 10 December 2018
The removeIf() method of ArrayDeque is used to remove all those elements from ArrayDeque which satisfies a given predicate filter condition passed as a parameter to the me...
read more
Java
Java-Collections
Java - util package
Java-Functions
Java-ArrayDeque
Deque addFirst() method in Java with Examples
Last Updated: 21 September 2018
The addFirst(E e) method of Deque Interface inserts the element passed in the parameter to the front of the Deque if there is space. If the Deque is capacity restricted an...
read more
Misc
Java
Java-Functions
Java-ArrayDeque
Java-LinkedBlockingDeque
Java-ConcurrentLinkedDeque
ArrayDeque addAll() method in Java
Last Updated: 10 April 2023
The addAll() method of ArrayDeque is used to insert all the elements of the collection passed as parameter at the end of this ArrayDeque. For adding elements of a collecti...
read more
Java
Java-Collections
Java - util package
java-basics
Java-Functions
Java-ArrayDeque
ArrayDeque removeAll() method in Java
Last Updated: 10 April 2023
The removeAll() method of ArrayDeque is used to remove all the elements which is common in both ArrayDeque and the collection passed as parameter. This method first collec...
read more
Java
Java-Collections
Java - util package
java-basics
Java-Functions
Java-ArrayDeque
Difference Between ArrayBlockingQueue and ArrayDeque
Last Updated: 20 November 2020
ArrayBlockingQueue is a class in Java that implements the BlockingQueue interface. ArrayBlockingQueue class and its iterator implement all the optional methods of the Coll...
read more
Java
Technical Scripter
Difference Between
Technical Scripter 2020
Java-Collections
Java-ArrayDeque
Java-ArrayBlockingQueue
Java Program to Implement ArrayDeque API
Last Updated: 19 January 2021
The ArrayDeque in Java provides how to use resizable-array additionally to the implementation of the Deque interface. It is also referred to as Array Double Ended Queue or...
read more
Java
Technical Scripter
Java Programs
Picked
Technical Scripter 2020
Java-Collections
Java-ArrayDeque
1
2
3
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !