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

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

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

Meeting Rooms II - LeetCode Account Login - 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 (Meeting Rooms II 문제는 LeetCode Premium 문제로 위 링크 혹은 LintCode를 통해 풀어보실 수 있습니다.) Meeting Rooms II 문제는 다음과 같다. Given an array of meeting time intervals consisting of s..

https://leetcode.com/problems/jump-game/ Jump Game - 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 (Jump Game 문제는 위 링크에서 풀어보실 수 있습니다.) Jump Game 문제는 다음과 같다. You are given an integer array nums. You are initially positioned at the array's first index, and each ..

https://leetcode.com/problems/meeting-rooms/ Account Login - 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 (Meeting Rooms 문제는 LeetCode Premium 문제로 위 링크 혹은 LintCode를 통해 풀어보실 수 있습니다.) Meeting Rooms 문제는 다음과 같다. Given an array of meeting time intervals where i..

Non-overlapping Intervals - LeetCode Non-overlapping Intervals - 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 (Non-overlapping Intervals 문제는 위 링크에서 풀어보실 수 있습니다.) Non-overlapping Intervals 문제는 다음과 같다. Given an array of intervals intervals where..

https://leetcode.com/problems/merge-intervals/ Merge Intervals - 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 Intervals 문제는 위 링크에서 풀어보실 수 있습니다.) Merge Intervals 문제는 다음과 같다. Given an array of intervals where intervals[i] = [starti, endi], merge al..