Skip to main content

Collection(Vector,Stack)

Vector:-Vector is a group of individual objects it is also called legacy class. Vector implements List Interface. Like ArrayList it also maintains insertion order but it is rarely used in non-thread environment as it is synchronized and due to which it gives poor performance in searching, adding, delete and update of its elements.

Three ways to create vector class object:

Method 1:-
Vector v = new Vector();
It creates an empty Vector with the default initial capacity of 10. It means the Vector will be re-sized when the 11th elements needs to be inserted into the Vector. Note: By default vector doubles its size. i.e. In this case the Vector size would remain 10 till 10 insertions and once we try to insert the 11th element It would become 20 (double of default capacity 10).
Method 2:
Syntax: Vector object= new Vector(int initialCapacity)
Vector v = new Vector(3);
It will create a Vector of initial capacity of 3.
Method 3:
Syntax:
Vector object= new vector(int initialcapacity, capacityIncrement)
Vector v= new Vector(4, 6)
Here we have provided two arguments. The initial capacity is 4 and capacityIncrement is 6. It means upon insertion of 5th element the size would be 10 (4+6) and on 11th insertion it would be 16(10+6).

Example1:-VectorExample.java

import java.util.*;
 
public class VectorExample {
 
   public static void main(String args[]) {
      Vector v = new Vector ();
 
      v.addElement("Apple");
      v.addElement("Orange");
      v.addElement("Mango");
      v.addElement("Fig");
 
      System.out.println("Size is: "+v.size());
      System.out.println("Default capacity increment is: "+v.capacity());
 
      v.addElement("fruit1");
      v.addElement("fruit2");
      v.addElement("fruit3");
 
      System.out.println("Size after addition: "+v.size());
      System.out.println("Capacity after increment is: "+v.capacity());
 
      Enumeration en = v.elements();
      System.out.println("\nElements are:");
      while(en.hasMoreElements())
         System.out.print(en.nextElement() + " ");
   }
}
Output:
Size is: 4
Default capacity increment is: 4
Size after addition: 7
Capacity after increment is: 8
 
Elements are:
Apple Orange Mango Fig fruit1 fruit2 fruit3
 

methods of Vector Class:

1.     void addElement(Object element): It inserts the element at the end of the Vector.
2.     int capacity(): This method returns the current capacity of the vector.
3.     int size(): It returns the current size of the vector.
4.     void setSize(int size): It changes the existing size with the specified size.
5.     boolean contains(Object element): This method checks whether the specified element is present in the Vector. If the element is been found it returns true else false.
6.     boolean containsAll(Collection c): It returns true if all the elements of collection c are present in the Vector.
7.     Object elementAt(int index): It returns the element present at the specified location in Vector.
8.     Object firstElement(): It is used for getting the first element of the vector.
9.     Object lastElement(): Returns the last element of the array.
10.    Object get(int index): Returns the element at the specified index.
11.    boolean isEmpty(): This method returns true if Vector doesn’t have any element.
12.    boolean removeElement(Object element): Removes the specifed element from vector.
13.    boolean removeAll(Collection c): It Removes all those elements from vector which are present in the Collection c.
14.    void setElementAt(Object element, int index): It updates the element of specifed index with the given element.
Stack:-Stack is a special designed class which is sub class of vector class where insertion and deletion perform from single end.
Methods of stack class are:-
public E push(E);
 public synchronized E pop();
 public synchronized E peek();
 public boolean empty();
 public synchronized int search(java.lang.Object);
Example1:-TestStack.java
import java.util.*;
class TestStack
{
public static void main(String[]args)
{
Stack s=new Stack();
s.push("A");
s.push("B");
s.push("C");
s.push("D");
System.out.println(s);
Iterator itr=s.iterator();
while(itr.hasNext())
{
System.out.println(itr.next());
}
System.out.println("poped element is :"+s.pop());
System.out.println(s);
System.out.println("peeked element is :"+s.pop());
System.out.println(s);
System.out.println(s.empty());
System.out.println(s.search("A"));
System.out.println(s.search("D"));
}
}
Output:-
C:\JAVATECH>javac TestStack.java
C:\JAVATECH>java TestStack
[A, B, C, D]
A
B
C
D
poped element is :D
[A, B, C]
peeked element is :C
[A, B]
false
2

-1

Comments

Popular posts from this blog

Introduction of Java

Java is a high level programming language which is used for creating various types of software's or applications. Types of java applications:- 1)     Stand alone application 2)     Desktop based application          3)     Web based application 4)     Enterprise application etc. Stand alone application:- Stand alone application run on single machine without user interface and every stand alone application having main method. Desktop based application:- Desktop based application also run on single machine with user interface and every Desktop based application having main method. Web based application:- Web based application run on web, web based application not required main method but for such types of application need server. Enterprise application:- Enterprise application is category of web application where doing some business o...

Small concept about OOPs

Some small concept about OOPs:- In many books and website write about OOPs concepts as hundred percent object oriented, pure object oriented and partial object oriented language. Hundred percent object oriented:- In the hundred percent object oriented movie hero is object, without object program is incomplete that means can not execute program without object. Without class and object programming or application development is not possible. Example of hundred percent object oriented language is  Smalltalk . Pure object oriented:- In the object oriented cinema obviously object is the hero. In pure object oriented language object having same importance but in this having some relax that is without creating object we can successfully execute our application. So in the object oriented programming without class we cannot create or run our application, class is must. Example of pure object oriented language is  Java . Partial object oriented:- In this type of la...

Abstraction,Encapsulation And Inheritance

Abstraction  is a one of the great feature of Oops,in this feature hide entire details of product, show only requirement specifications(what product will do). The main purpose behind abstraction is to increase productivity or use of product without knowledge of product implementation. in this case the person don't know how product  was implemented but know how product works or action of product. In java abstraction is achieved by abstract class and interface,here interface provide 100% abstraction and abstract class provide partial abstraction. For example: - ATM machine is example of abstraction.  every technical and non-technical person use facility of ATM without knowing the entire process. they know if they click on withdraw button then they can withdraw money from ATM machine but they don't know when they click on withdraw button the request is send to the server and after go into database and so on. Here ATM machine show only requirement specificat...