Home  >  Article  >  What does the execution efficiency of the algorithm depend on?

What does the execution efficiency of the algorithm depend on?

藏色散人
藏色散人Original
2020-07-02 09:13:568223browse

The execution efficiency of the algorithm is related to "space complexity" and "time complexity". The space complexity is the length of the storage unit occupied by the program written according to the algorithm when executed. The time complexity is the program written according to the algorithm. The length of time it takes to execute.

What does the execution efficiency of the algorithm depend on?

Algorithmic complexity

There are two main indicators for measuring and comparing algorithms:

  • Space complexity S(n): The length of the storage unit occupied by the program written according to the algorithm during execution

  • Time complexity T(n) : The length of time it takes to execute a program written according to the algorithm

Analysis of general algorithm efficiency:

Worst case complexity $T_ {worst}$(n)

Average complexity$T_{avg}$(n)

The above is the detailed content of What does the execution efficiency of the algorithm depend on?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn