[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-04-30 22:42:02 +09:00
parent 0bd4f19e38
commit c36c0644a1
4888 changed files with 18470 additions and 18602 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
---
id: P-REINFORCE-AUTO-BUSO-001
id: [[P-Reinforce]]-AUTO-BUSO-001
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.99
tags: [auto-reinforced, bubble-sort, algorithms, sorting, educational, comparison-sort]
tags: [auto-reinforced, bubble-sort, algorithms, [[Sorting]], educational, comparison-sort]
last_reinforced: 2026-04-20
---
@@ -20,7 +20,7 @@ last_reinforced: 2026-04-20
* 이면 한 개의 가장 큰 원소가 끝으로 감. 이 과정을 원소 개수만큼 반복.
2. **성능 지표**:
* **Time Complexity**: $O(N^2)$ (데이터가 많아지면 매우 느려짐).
* **Stability**: 동일한 값의 상대적 순서가 유지되는 안정 정렬(Stable Sort).
* **[[Stability]]**: 동일한 값의 상대적 순서가 유지되는 안정 정렬(Stable Sort).
3. **교육적 의미**:
* 실무에서 대용량 데이터를 정렬할 때는 쓰이지 않지만, 알고리즘의 기초 논리인 '비교'와 '교환'을 배우는 가장 좋은 교재임.