반응형
public static ListNode reverse(ListNode head) {
ListNode prev = null;
while (head != null) {
ListNode next = head.next;
head.next = prev;
prev = head;
head = next;
}
return prev;
}
- Time complexity : O(n)O(n)
- Space complexity : O(1)O(1)
- input : head node of LinkedList
- output : head node of LinkedList
반응형
'old > Programming' 카테고리의 다른 글
stable sort와 unstable sort의 차이점 (0) | 2021.08.25 |
---|---|
[Java 예외]IllegalArgumentException 대처법 (0) | 2021.08.24 |
inclusive와 exclusive의 차이점 (0) | 2021.08.19 |
windows 10에 git 설치하기 (2) | 2021.04.21 |
Hugo로 개인 블로그 만드는 법-9.사진 크기 조정 (0) | 2021.04.17 |