bubblesort

4
1 Christian Spannagel Pädagogische Hochschule Heidelberg [email protected] http://wiki.zum.de/PH_Heidelberg Bubble Sort

Upload: christian-spannagel

Post on 08-May-2015

199 views

Category:

Education


0 download

DESCRIPTION

Kurze Einführung in Sortierverfahren anhand des Bubblesort Algorithmus

TRANSCRIPT

Page 1: Bubblesort

1

Christian Spannagel

Pädagogische Hochschule [email protected]

http://wiki.zum.de/PH_Heidelberg

Bubble Sort

Page 2: Bubblesort

2

Ordne!

Page 3: Bubblesort

3

Bubble Sort

procedure bubblesort (A: array)

n = array.length

do

swapped = false

for i = 1 to (n-1) do

if A [i] > A [i+1] then

swap ( A[i], A[i+1] )

swapped = true

end if

end

n = n – 1

while n > 1 and swapped

end

Page 4: Bubblesort

4

Weitere Sortierverfahren

• Insertionsort• Mergesort• Quicksort

siehe auch: http://de.wikipedia.org/wiki/Sortierverfahren