-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathllpractice.java
60 lines (51 loc) · 1.17 KB
/
llpractice.java
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
package Linkedlist;
import java.util.*;
/*question1:-make ll and add 1,5,7,3,8,2,3 search the no. 7 and display its index
public class Linkedlistfolder.llpractice {
public static void main(String args[])
{
LinkedList<Integer> ll=new LinkedList<Integer>();
ll.add(1);
ll.add(5);
ll.add(7);
ll.add(3);
ll.add(8);
ll.add(2);
ll.add(3);
if(ll.contains(7))
{
System.out.println(ll.indexOf(7));
}
}
}*/
public class llpractice
{
public static void main(String args[])
{
int n;
Scanner sc=new Scanner(System.in);
n=sc.nextInt();
LinkedList<Integer> ll =new LinkedList<Integer>();
for(int i=0;i<n;i++)
{
ll.add(sc.nextInt());
}
Iterator it=ll.iterator();
while(it.hasNext())
{
// if(valueOf(it.next())>25)
// {
// ll.remove();
// }
}
for(int j=0;j<ll.size();j++)
{
if(ll.get(j)>25)
{
ll.remove(j);
j=j-1;
}
}
System.out.println(ll);
}
}