-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJavaList.java
More file actions
80 lines (70 loc) · 2.21 KB
/
JavaList.java
File metadata and controls
80 lines (70 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Java List
For this problem, we have types of queries you can perform on a List:
Insert at index :
Insert
x y
Delete the element at index :
Delete
x
Given a list, , of integers, perform queries on the list. Once all queries are completed,
print the modified list as a single line of space-separated integers.
Input Format
The first line contains an integer, (the initial number of elements in ).
The second line contains space-separated integers describing .
The third line contains an integer, (the number of queries).
The subsequent lines describe the queries, and each query is described over two lines:
If the first line of a query contains the String Insert, then the second line contains
two space separated integers , and the value must be inserted into at index.
If the first line of a query contains the String Delete, then the second line contains index,
whose element must be deleted from .
Constraints
Each element in is a 32-bit integer.
Output Format
Print the updated list as a single line of space-separated integers.
Sample Input
5
12 0 1 78 12
2
Insert
5 23
Delete
0
Sample Output
0 1 78 12 23
*/
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class JavaList
{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int numElements = Integer.parseInt(sc.nextLine());
ArrayList<Integer> numList = new ArrayList<>();
for(int i = 0;i < numElements;i++){
numList.add(sc.nextInt());
}
int numQueries = sc.nextInt();
sc.nextLine();
for(int i = 0;i < numQueries;i++)
{
String queryType = sc.nextLine();
if(queryType.equals("Insert"))
{
String[] queryArray = sc.nextLine().split(" ");
numList.add(Integer.parseInt(queryArray[0]),Integer.parseInt(queryArray[1]));
}
else
{
int removeIndex = Integer.parseInt(sc.nextLine());
numList.remove(removeIndex);
}
}
for(Integer num : numList)
{
System.out.print(num+" ");
}
}
}