core
Abstract Class vs Interfaces
Posted July 22, 2022 by Anusha ‐ 2 min read
⌖ core java programming abstract class differences interface
Linkedlist
Linked List is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data structure where the elements are not stored in contiguous locations and every element is a separate object with a data part and address part. The elements are linked using pointers and addresses. Each element is known as a node.
Posted August 16, 2022 by Anusha ‐ 5 min read
⌖ core java programming linkedlist list collections data-structures
Vector Class
The Vector class implements a growable array of objects. Vectors fall in legacy classes, but now it is fully compatible with collections. It is found in java.util package and implement the List interface, so we can use all the methods.
Posted August 18, 2022 by Anusha ‐ 6 min read
⌖ core java programming vector class array deprecated list collections
Stack
Java Collection framework provides a Stack class that models and implements a Stack data structure. The class is based on the basic principle of last-in-first-out. In addition to the basic push and pop operations, the class provides three more functions of empty, search, and peek.
Posted August 18, 2022 by Anusha ‐ 4 min read