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
- 카카오
- Algorithm
- c++
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 중반부
- 유니온파인드
- BaekJoon
- 소감
- 투포인터
- LIS #Algorithm #요소추적
- 삼성 #코테 #2020상반기 #c++
- 코딩테스트
- Union-find
- 스마일게이트
- 보석쇼핑
- Smilegate
- 알고리즘
- 서버개발캠프
- BFS
- 1편
- 식단
- 코테
- 카카오인턴
- 백준
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 48. Rotate Image 본문
반응형
배열을 90도 시계방향으로 회전 시키는 문제이다.
n*n배열이라고 가정했을 때,
(i, j)점은 (j, n-1-i)점과 대응된다.
코드는 다음과 같습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class Solution {
public:
void rotate(vector<vector<int>>& matrix) {
// (i, j) -> (j, n-1-i)
int v[21][21];
int n = matrix.size();
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
v[j][n-1-i] = matrix[i][j];
}
}
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
matrix[i][j] = v[i][j];
}
}
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 58. Length of Last Word (0) | 2022.01.22 |
---|---|
LeetCode : 94. Binary Tree Inorder Traversal (0) | 2022.01.09 |
LeetCode : 45. Jump Game II (0) | 2021.10.17 |
LeetCode : 496. Next Greater Element I (0) | 2021.07.20 |
LeetCode : 463. Island Perimeter(Array) (0) | 2021.07.16 |
Comments