![]() |
VOOZH | about |
The Java.util.Vector.set() method is used to replace any particular element in the vector, created using the Vector class, with another element.
Syntax:
Vector.set(int index, Object element)
Parameters: This function accepts two mandatory parameters as shown in the above syntax and described below.
Return Value: The method returns the previous value from the vector that is replaced with the new value.
Below programs illustrate the Java.util.Vector.set() method:
Program 1:
Vector: [Geeks, for, Geeks, 10, 20] The Object that is replaced is: Geeks The Object that is replaced is: 20 The new Vector is:[Geeks, for, GFG, 10, 50]
Program 2:
Vector: [12, 23, 22, 10, 20] The Object that is replaced is: 12 The Object that is replaced is: 20 The new Vector is:[21, 23, 22, 10, 50]
Time complexity: O(n). // n is the size of the vector.
Auxiliary Space: O(n).