Sort-bubble sort

Source: Internet
Author: User

Most of the Internet School Students' written examinations will have questions about algorithms and data institutions. In order to prepare for the written examination, they will start learning algorithms and data structures.

This article is the basic Bubble sorting. c ++ is used for this series of learning.

Bubble Sorting language description:

Assume that incremental sorting is required. Select the first element, traverse the following elements and compare them with them. If the value is greater than, the two positions are exchanged. Repeat the above process until the last element.

The Code is as follows:

Bool bubblesort (int * array) {int temp; For (INT I = 0; I <length (array); I ++) {for (Int J = I + 1; j <length (array); j ++) {If (array [I]> array [J]) {temp = array [I]; array [I] = array [J]; array [J] = temp ;}} return true ;}

 

Sort-bubble sort

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.