본문 바로가기

Algorithm

JAVA : LinkedList , ArrayList 순환도중에 값 삭제하기

반응형

일반적으로 for 안에 arraylist를 순환하면서 삭제하게된다면 현재값이 사라지게되어 다음값을 참조할수 없게된다.

 

이럴 경우에는 Iterator를 이용하면 쉽다.

 

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
package LineSweep;
 
 
public class LinkedListTest {
    public static void main(String[] args) {
        LinkedList<Integer> list = new LinkedList<Integer>();
        
        list.add(2);
        list.add(3);
        list.add(5);
        list.add(7);
        list.add(88);
        list.add(12);
        list.add(62);
        list.add(52);
        
        for(Iterator<Integer> it = list.iterator();it.hasNext();) {
            Integer value = it.next();
            if(value % 2 == 0)
                it.remove();
        }
        
        for(Integer tmp : list) {
            System.out.println(tmp);
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

반응형

'Algorithm' 카테고리의 다른 글

Line Sweep 알고리즘 (백준 : 2261) JAVA  (0) 2020.03.06
Upper Bound, Lower Bound  (0) 2020.03.06
알고리즘 공부순서  (2) 2020.03.06
LCA  (0) 2020.03.04
피사노주기  (0) 2020.03.03