

Algorithms


Logic and Algorithms #10: Searching Techniques and Introduction to Algorithm Analysis
·8 mins·
loading
Techniques for picking and selecting an element from several existing elements.

Logic and Algorithms #09: Sorting Methods
·9 mins·
loading
The process of arranging a series of data into a certain order or arrangement. The sorted data can be numeric data, character data, or string data (Sitorus, 2015).

Logic and Algorithms #08: Divide and Conquer Method
·10 mins·
loading
The Divide and Conquer method is a problem-solving approach that divides a problem into smaller parts, solves each part, and then combines the results.

Logic and Algorithms #07: Array
·3 mins·
loading
An array is a data structure used to store multiple values in a single variable.

Logic and Algorithms #06: Recursive Structures
·6 mins·
loading
A recursive structure is a concept where a function calls itself to solve a problem.

Logic and Algorithms #05: Looping
·7 mins·
loading
Looping is a control structure that allows a program to repeat the execution of a block of code as long as a certain condition is met.

Logic and Algorithms #04: Branching
·3 mins·
loading
Branching is a control structure that allows a program to make decisions based on certain conditions.