Best case and worst caseLearn in this article how some specific constructions can define different complexity functions for the same algorithm. Defining the concepts of best case and worst case.
Algorithm analysis: how do you do it?Learn how to do algorithm analysis. See examples and step-by-step demonstrations of analyzes performed on real algorithms.
Function: modularizationLearn the technique of modularizing algorithms. A function make it possible to divide the source code into separate modules.
ArraysLearn now how to manipulate large data sets. With arrays, you have the ability to manipulate multiple variables as if they were a single one.
For statement: repetition structureAdvance your knowledge in repetition structures. Learn how the “for statement”, the “continue” statement and the “break” statement work.
Conditional structuresWhat happens if you put one if-else structure inside the other? See the concept of conditional structures in this article.