Computer Science, asked by minealice625, 8 months ago

What term is used to describe an o(n) algorithm?

Answers

Answered by santoshipatil19
0

Explanation:

numerical taxonomy is used to describe algorithm

Answered by adventureisland
0

A linear term is used to describe an o(n) algorithm.

How to describe an o(n) algorithm :

  • An o(n) algorithm is referred to as a linear algorithm. The method O(N) is named by the fact that its performance rises linearly and proportionately with the size of the input data collection.
  • The size of the input, in this example the number of items in your list, is referred to as n.
  • O(n) denotes that your method will insert an item in the sequence of n operations.

Similar questions