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 |
Tags
- string
- 백준
- Leetcode
- 논리학
- 코테
- OVH
- AWS
- github cli
- elasticbeanstalk
- 데이터센터
- Intellij
- random
- 자동완성
- thymeleaf
- 서버중단
- char[]
- PR
- springboot
- 자료형
- LiveTemplate
- 서버오류
- 통신대란
- 명제
- 큐
- 코딩테스트
- Java
- linux
- Queue
- github
- JAVA기초
Archives
- Today
- Total
목록알고리즘 (1)
Midnight Coder's Lounge
[Leetcode][Java] 투 포인터로 더욱 빠른 배열 연산을 수행해 보자(1)
투 포인터 알고리즘 : 배열을 효율적으로 탐색하기 위해, 동시에 두 개의 포인터를 사용하여 배열을 순회하는 알고리즘입니다. 별도의 정렬 알고리즘 없이 정렬된 배열을 얻을 수 있게 해 주거나, 이중반복문으로 처리해야 할 문제를 반복문 하나로 처리하거나, 추가적인 배열 생성 없이 그대로 배열을 수정하는(in-place modification) 등등, 시간/공간복잡도를 줄여주는 유용한 접근법입니다. Leetcode에 등록된 실제 예제를 통해 투 포인터 알고리즘에 대해서 알아보겠습니다. 977.Squares of a Sorted Array Given an integer array nums sorted in non-decreasing order, return an array of the squares of eac..
Algorithm
2022. 9. 18. 16:12