알고리즘 관련/Linked List(10)
-
328. Odd Even Linked List
https://leetcode.com/problems/odd-even-linked-list/ Odd Even Linked List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 홀수번째 연결리스트 뒤에 짝수번째 연결리스트가 오도록 재배열하는 문제이다. 1. 문제 이해 => Given the head of a singly linked list, group all the nodes with odd indices together followed by the nod..
2021.06.20 -
206. Reverse Linked List
https://leetcode.com/problems/reverse-linked-list/ 연결리스트 뒤집는 문제. 1. 문제 이해 => Given the head of a singly linked list, reverse the list, and return the reversed list. 단일 연결리스트의 헤드 노드가 주어질 시, 연결리스트를 뒤집어서 리턴하라. Constraints: The number of nodes in the list is the range [0, 5000]. -5000 next); head->next->next = head; head->next = nullptr; return last; } }; 6. 피드백 & 복기 재귀 다시 공부해야겠다. ListNode *last = r..
2021.06.19 -
707 - Design Linked List : 이중 연결리스트 ver.
https://leetcode.com/problems/design-linked-list/ Design Linked List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 작성 코드: struct Node { int val; Node *next, *prev; Node(int x) : val(x), next(nullptr), prev(nullptr) {} }; class MyLinkedList { private: Node *head; Node *tail; int..
2021.06.19 -
19. Remove Nth Node From End of List
https://leetcode.com/problems/remove-nth-node-from-end-of-list/ 연결리스트의 끝에서부터 n번째 노드를 지우는 문제. 1. 문제 이해 => Given the head of a linked list, remove the nth node from the end of the list and return its head. 간. 단. 명. 료. 연결리스트의 헤드 노드가 주어지면, 연결 리스트의 끝에서부터 n번째 노드를 지우고 연결리스트를 리턴하라. 제한사항 Constraints: The number of nodes in the list is sz. 1 next; }; int deleteIdx = nodes.size() - n; if (deleteIdx == 0) r..
2021.06.18 -
160. Intersection of Two Linked Lists
https://leetcode.com/problems/intersection-of-two-linked-lists/ Intersection of Two Linked Lists - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 두 연결리스트의 합쳐지는 부분(intersection)을 구하는 문제이다. 1. 문제 이해 => Given the heads of two singly linked-lists headA and headB, return the node at wh..
2021.06.18 -
142. Linked List Cycle II
https://leetcode.com/problems/linked-list-cycle-ii/ Linked List Cycle II - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이전 연결 리스트 사이클 문제와 동일한데, 차이점은 사이클이 시작되는 지점을 리턴. 1. 문제 이해 => Given a linked list, return the node where the cycle begins. If there is no cycle, return null. (사이클..
2021.06.17 -
141. Linked List Cycle
https://leetcode.com/problems/linked-list-cycle/ Linked List Cycle - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 연결리스트에서 cycle이 존재하는지 판별하는 문제. 1. 문제 이해 => Given head, the head of a linked list, determine if the linked list has a cycle in it. (문제의 요구사항. head노드가 주어지면, 연결리스트가 cycl..
2021.06.17 -
707. Design Linked List - 연결리스트 기본 구현 문제
https://leetcode.com/problems/design-linked-list/ Design Linked List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 말 그대로 단순 연결 리스트를 구현하는 문제. 중간 중간에 처리해야할 경우의 수도 많아서, 애를 먹었다. 이 코드는 더미 노드를 쓰지는 않았는데, 추후 더미 노드를 사용하는 방법 또한 고려해봐야 할 듯? struct Node { int val; Node *next; Node () : val(..
2021.06.17