Ministério da Educação
Brasil um país de todos
Personal tools
You are here: Home Members Roberta Andrade de Araújo Fagundes Introdução a Programação Solução - bubblesort
Navigation
Log in


Forgot your password?
 
Document Actions

Solução - bubblesort

by Roberta Andrade de Araújo Fagundes last modified 2009-10-28 01:28

método bubblesort de ordenação

Click here to get the file

Size 1 kB - File type text/python-source

File contents

def bubble(vetor):

    troca=True
    fim=len(vetor)-1
    pos=1
    while(troca==True):
        troca=False
        for i in range(0,fim):
            if(vetor[i]>vetor[i+1]):
                chave=vetor[i]
                vetor[i]=vetor[i+1]
                vetor[i+1]=chave
                pos=i
                troca=True
        fim=pos
    return (vetor)

vetor=[]
vetor=[28,26,30,24,25]

print (bubble(vetor))
    
    

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: