Python Bubble Sorting Algorithm Implementation Code

Source: Internet
Author: User

1. Algorithm Description:
(1) A total of N-1 cycles
(2) In each loop, if the preceding number is greater than the following number
(3) set a tag. If there is no exchange last time, it indicates that this is done.

2. python Bubble Sorting Code

Copy codeThe Code is as follows:
#! /Usr/bin/python
#-*-Coding: UTF-8 -*-

Def bubble (l ):
Flag = True
For I in range (len (l)-1, 0,-1 ):
If flag:
Flag = False
For j in range (I ):
If l [j]> l [j + 1]:
L [j], l [j + 1] = l [j + 1], l [j]
Flag = True
Else:
Break
Print l

Li = [,]
Bubble (li)


Result: [2, 3, 4, 21, 33, 44, 45, 67]

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.