List의 부분 정렬 및 뒤집기
List의 일부분을 정렬해보거나, 뒤집어봅니다.
Goal
- List의 일부분을 정렬하거나 뒤집어봅니다.
부분 정렬
subList(startIndex, endIndex)
을 이용합니다. (end is exclusive)
1 |
|
list.subList(0, 3)
을 이용해 얻어낸 부분 리스트만 정렬해봅니다.0
번 인덱스에서2(3-1)
번 인덱스 구간인{1, 5, 3}
부분만 정렬되는것을 확인 할 수 있습니다.
The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of the optional list operations supported by this list.
- subList의 경우 공식문서에 따르면, 반환되는것이 실제 List의 형태입니다.
- 즉
list.subList
를 했다고 해서 새로운 객체가 반환되는것이 아니기 때문에, 부분 정렬이 정상적으로 수행됩니다.
1 |
|
- subList의
0
번 인덱스를111
로 변환하지만, originalList의0
번 인덱스값도 같이 변경되는것을 확인할 수 있습니다.
부분 뒤집기
1 |
|
- 부분 정렬 부분과 동일한 방식으로 구현해주면 됩니다.