일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Sort
- Array
- dynamic programming
- C++
- 비트 조작
- 배열
- CPP
- Greedy
- LeetCode
- binary search
- Interval
- DFS
- bit manipulation
- bitwise operation
- 메모이제이션
- Sorting
- unordered_map
- graph
- algorithm
- 알고리즘
- Depth-First Search
- union-find
- binary
- 동적계획법
- 탐욕알고리즘
- 깊이 우선 탐색
- 비트 연산
- 이진탐색
- hash table
- linked list
- Today
- Total
목록2022 Algorithm Study(by leetcode)/Linked List (6)
공대생 공부노트(Notes for Engineering Studies)

https://leetcode.com/problems/reorder-list/ Reorder 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 (Reorder List 문제는 위 링크에서 풀어보실 수 있습니다.) Reorder List 문제는 다음과 같다. You are given the head of a singly linked-list. The list can be represented as: L0 → L1 ..

Reverse Linked List - LeetCode Reverse 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 (Reverse Linked List 문제는 위 링크에서 풀어보실 수 있습니다.) Reverse Linked List 문제는 다음과 같다. Given the head of a singly linked list, reverse the list, and return the ..

Remove Nth Node From End of List - LeetCode Remove Nth Node From End of 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 (Remove Nth Node From End of List 문제는 위 링크에서 풀어보실 수 있습니다.) Remove Nth Node From End of List 문제는 다음과 같다. Given th..

Merge k Sorted Lists - LeetCode Merge k Sorted 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 (Merge K Sorted Lists 문제는 위 링크에서 풀어보실 수 있습니다.) Merge K Sorted Lists 문제는 다음과 같다. You are given an array of k linked-lists lists, each linked-list is ..

Merge Two Sorted Lists - LeetCode Merge Two Sorted 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 (Merge Two Sorted Lists 문제는 위 링크에서 풀어보실 수 있습니다.) Merge Two Sorted Lists 문제는 다음과 같다. You are given the heads of two sorted linked lists list1 a..

Linked List Cycle - LeetCode 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 (Linked List Cycle 문제는 위 링크에서 풀어보실 수 있습니다.) Linked List Cycle 문제는 다음과 같다. Given head, the head of a linked list, determine if the linked list has a cycle in ..