Similar Posts

Subscribe
Notify of
7 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
IchMalWiederXY
1 year ago

Starting from the start-up, this 6 lines comes out as an intermediate sorting.
The inner loop for each index always ends when a smaller element has been found and placed in the right place.

Here is the associated VBA code. Don’t be surprised. On a table sheet, the index must start at “2” since the smallest value for a cell coordinate is the “1”.

Public Sub MySort()
Dim Zeile, Spalte
Dim Eintrag
Dim pos
Zeile = 2
Dim index As Integer
For index = 2 To 7
    Eintrag = Cells(1, index).Value
    pos = index
    Do While pos > 1
        If Cells(1, pos - 1).Value > Eintrag Then
            Cells(1, pos).Value = Cells(1, pos - 1).Value
            pos = pos - 1
        Else
            Exit Do
        End If
    Loop
    Cells(1, pos).Value = Eintrag
    Range(Cells(Zeile, 1), Cells(Zeile, 7)).Value = Range("A1:G1").Value
    Zeile = Zeile + 1
Next i
End Sub 
ElvanL77
1 year ago

so if no one wants…

The code’s pretty stupid… but they are always in questions of examination;-)

So let’s go through this one step by step… (that’s not a C++, but pseudocode;-) )

Für index=1 bis länge-1 // index = 1; länge = 6
eintrag = wert[index]   // wert[1] = 6 = eintrag
pos = index   // pos = 1
SOLANGE pos > 0 UND wert[pos-1] > eintrag   // pos ist immer größer 0; wert[0] = 42 > eintrag = 6 (== TRUE)
werte[1] = werte[0] = 42
pos = pos - 1 
werte[0] = eintrag   // werte[0] = 6
-----------------------------------------
6, 42, 27, 38, 28, 18, 4

And behold, I have the same result as you…

If that’s really wrong, I can’t tell you why, sry

KarlRanseierIII
1 year ago

I was just looking at the first line that looks okay.

If one reads and sees that the algo works comparatively against the assertion, one has to ask whether the expected solution is incorrect.

1mgont
1 year ago

Have the same as you

1mgont
1 year ago
Reply to  1mgont

Okay, nevermind, I’ve gotten out of line. Yours should actually be right