Search code examples
javacollectionsvectorpush-back

push_back() and push_front() in Java


Is there any collection class in java, that implements push_back() and push_front() methods?


Solution

  • The class java.util.LinkedList has addFirst/Last(), getFirst/last() and removeFirst/Last().