Ітерація
Повторення процесу для досягнення результату.
Iteration is a fundamental control flow concept where a block of code is executed repeatedly until a specific condition is met. Loops (for, while) are the most common implementation. Unlike recursion, iteration typically happens within a single stack frame and uses explicit state variables (counters) to track progress.
graph LR
Center["Ітерація"]:::main
Rel_incentive_design["incentive-design"]:::related -.-> Center
click Rel_incentive_design "/terms/incentive-design"
Rel_throughput["throughput"]:::related -.-> Center
click Rel_throughput "/terms/throughput"
Rel_hashing["hashing"]:::related -.-> Center
click Rel_hashing "/terms/hashing"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 Перевірка знань
1 / 1
🧒 Простими словами
Ітерація — це як робити 10 віджимань. Ти робиш той самий рух знову і знову, поки не досягнеш мети. У коді це повторення завдання до його завершення.
🤓 Expert Deep Dive
Ітеративні рішення зазвичай ефективніші за пам'яттю, ніж рекурсивні. 'Unrolling loops' — це оптимізація компілятора, яка зменшує накладні витрати на розгалуження.