Skip to Content
Absolute Beginner's Guide to Programming, Third Edition
book

Absolute Beginner's Guide to Programming, Third Edition

by Greg Perry
November 2002
Beginner content levelBeginner
432 pages
11h 44m
English
Que
Content preview from Absolute Beginner's Guide to Programming, Third Edition

Swapping Values

The cornerstone of any sorting algorithm is data swapping. As you sort data, you have to rearrange it, swapping higher values for lower values. As Figure 12.1 shows, swapping values simply means replacing one variable's contents with another's and vice versa.

Figure 12.1. Learn to swap two variable values with code.

Suppose you assign two variables named var1 and var2 with the following statements:

var1 = 65
var2 = 97

The concept of swapping them is simple. How would you do it? If you said the following, you would not be quite correct:

var1 = var2   ' Not quite accurate
var2 = var1

Can you see why these two assignment statements ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Absolute Beginner's Guide to Programming, Second Edition

Absolute Beginner's Guide to Programming, Second Edition

Greg Perry

Publisher Resources

ISBN: 0789729059Purchase book