Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 삼성 #코테 #2020상반기 #c++
- 코딩테스트
- 식단
- 보석쇼핑
- 코테
- LIS #Algorithm #요소추적
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BaekJoon
- 서버개발캠프
- 카카오인턴
- Smilegate
- 카카오
- BFS
- Algorithm
- c++
- 알고리즘
- 투포인터
- 유니온파인드
- 백준
- 1편
- 중반부
- Union-find
- 스마일게이트
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 2. Add Two Numbers 본문
반응형
오우.. 이런 ListNode로 푸는 문제가 c++로는 익숙하지 않아서 힘들었다.
말 그대로 연결리스트의 특성을 잘 살려서 구현하면 된다!
[메인 로직]
각 노드의 값을 합하고 나머지는 dummy노드에 넣어주고 몫은 다음으로 넘겨준다.
ListNode만 익숙하다면, 계산하는 과정을 그닥 어렵지 않다.
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
|
class Solution {
public:
ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {
bool check = false;
ListNode* dummy = new ListNode();
ListNode* curr = dummy;
int mok = 0;
while(l1!=NULL || l2!=NULL){
int x = (l1!=NULL) ? l1->val : 0;
int y = (l2!=NULL) ? l2->val : 0;
int sum = x+y+mok;
if(l1!=NULL){
l1 = l1->next;
}
if(l2!=NULL){
l2 = l2->next;
}
curr->val = (sum%10);
mok = (sum/10);
if(l1==NULL && l2==NULL) break;
curr->next = new ListNode();
curr = curr->next;
}
if(mok!=0){
curr->next = new ListNode(mok);
}
return dummy;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 62. Unique Paths (0) | 2021.01.22 |
---|---|
LeetCode : 111. Minimum Depth of Binary Tree (0) | 2021.01.21 |
LeetCode : 21. Merge Two Sorted Lists (0) | 2021.01.20 |
LeetCode : 49. Group Anagrams (0) | 2021.01.19 |
LeetCode : 20. Valid Parentheses (0) | 2021.01.19 |
Comments