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
- 유니티
- 누적 합
- 구현
- 정렬
- 백준
- 스택
- 문자열
- Unreal Engine 5
- ue5
- Team Fortress 2
- 백트래킹
- 시뮬레이션
- 트리
- 다익스트라
- 브루트포스
- BFS
- 그리디 알고리즘
- DFS
- 재귀
- 자료구조
- 수학
- 유니온 파인드
- VR
- 투 포인터
- 그래프
- 우선순위 큐
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 알고리즘
- c++
Archives
- Today
- Total
목록에디터 C++ (1)
1일1알

중간 삽입 삭제가 O(1)인 연결 리스트를 이용하였다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); list lst; string str; cin >> str; for (int i = 0; i < str.length(); i++) { lst.push_back(str[i]); } au..
알고리즘
2022. 6. 4. 13:12