-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedList.java
56 lines (45 loc) · 1.27 KB
/
linkedList.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javapep;
import java.util.*;
/**
*
* @author anil
*/
public class linkedList {
public static void main(String args[])
{
// LinkedList<String> l=new LinkedList<String>();
// l.add("Anil");
// l.offer("kumar");
//
//
// System.out.println(l);
// LinkedList<String> l1=new LinkedList<String>();
// l1.add("h");
// l1.add("a");
// l1.add("k");
//
// //Collections.sort(l1);//it will perform sorting;
// System.out.println(l1.addAll(l));
// System.out.println(l1);
// char arr[]={'z','a','i','c'};
// String arr1;
// arr1=Arrays.toString(arr);
// Arrays.sort(arr);
// System.out.println( arr1.contains("z"));
// for(char a:arr)
// {
// System.out.println(a);
// }
//System.out.println(l1.removeAll(l));//it will remove the elements of list l
// System.out.println(l1);
// l1.retainAll(l);//It will get common elements of both lists
// System.out.println(l1);
// l1.clear();
// System.out.println(l1);
}
}