This is the usual method used for binary sorting method.
The steps to do this sort is to do these things
-1 Have unsorted deck.
-2 Set all cards down in a line.
-3 Pick up the left most card
-4 Compare selected card to one card to the right
-5 If larger move left most card to one to the right. Repeat Step 4 with the moved card until it stops moving.
-5 If smaller stop moving cards. Repeat Step 3 until no more movement
-6 Deck is now ordered. Finish