Algorithm


An algorithm is precise steps that describe the solution of a certain task or problem.

(DEV285x)

Sorting Algorithm

Sorting is a fundamental algorithm.

  • int [] lst = {4, 9, 7, 1, 3, 6, 5}
  • Arrays.sort(lst);
  • System.out.println(Arrays.toString(lst));

(DEV285x)

List

Searching