Understanding O (log2n) and O (nlog2n)

Source: Internet
Author: User
O (LGN) is interpreted as:

Divide a dataset into two halves, then divide each half into two halves, and so on


O (NLGN) is interpreted as:

Divides a dataset into two halves, divides each half into two halves, and so on, iterating through half the data at the same time in the process

In the case of merge sort, the process of sorting can be regarded as an inverted two-fork tree:


From the above, the inverted two-tree leaf node comparison of the number of times, the worst case with the depth of the two-fork tree is the same: from Root to find a leaf node, the complexity of the tree height, that is, log2 N.

The number of times each leaf node is compared can be understood to find every leaf node from root, complexity is tree height * leaf node number, that is log2 n * N.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.