JavaGian java tutorial and java interview question and answer

JavaGian , Free Online Tutorials, JavaGian provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, ajax, core java, sql, python, php, c language etc. for beginners and professionals.

Showing posts with label ArrayList. Show all posts
Showing posts with label ArrayList. Show all posts

How to remove duplicates from ArrayList in java

2:39 AM
There are many ways to do it. Some of them are: Using iterative approach Using HashSet (but does not maintain insertion order) Using LinkedHashMap Program: 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   package org . arpit . java2blog . algo ;   import java . util . ArrayList ; import java . util . HashSet ; import java . util . LinkedHashSet ; import java . util . * ;   public class RemoveDuplicatesArrayListMain { /* * @author : Arpit Mandliya */ public static void main ( String [ ] args ) { ArrayList employeeNameList = new ArrayList ( ) ; employeeNameList . add ( "John" ) ; employeeNameList . add ( "Ankit" ) ; employeeNameList . add ( "Rohan"

.