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

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 ..