0
Can you make a int linked list in java?
plz answer
4 Answers
+ 1
I think your searching for HashMap
0
A want also ask of you can do that on a an ArrayList
0
If you asked that is there a linked list which contains integer, the answer is yes,
LinkedList<Integer> list = new LinkedList<Integer>();
list.add(2);
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(6);
0
yes we can use it just pace "Integer" instead of "String"