Difference between revisions of "W1351 Swap Function"

From Coder Merlin
m (Editorial review and minor corrections)
 
(2 intermediate revisions by one other user not shown)
Line 5: Line 5:
A very common need in many algorithms is swapping the values in two variables.  It's also very common that these two variables are contained within an array.
A very common need in many algorithms is swapping the values in two variables.  It's also very common that these two variables are contained within an array.
== Swapping ==
== Swapping ==
The first approach that most students take when swapping is this:
The first approach that most students take when swapping is the following:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift">
let x = 5
let x = 5
Line 14: Line 14:
</syntaxhighlight>
</syntaxhighlight>


Take the time to think through what you believe will occur as the above code is executed. Then, try it.
Take the time to think through what you think will occur when the above code is executed. Then, try it.


{{Observe|Section 1|
{{Observe|Section 1|
Line 31: Line 31:




View the following video:  [https://www.youtube.com/watch?v=vzCUWAxq6lU Swapping Algorithm] (YouTube)
Watch the following video:  [https://www.youtube.com/watch?v=vzCUWAxq6lU Swapping Algorithm] (YouTube)


{{Observe|Section 3|
{{Observe|Section 3|
Line 37: Line 37:
}}
}}


== Functions Which Modify Their Arguments ==
== Functions that Modify Their Arguments ==
If we want to modify the value of a (value-type) argument passed to a function, a special syntax is required. Consider the following code segment:
If we want to modify the value of a (value-type) argument passed to a function, a special syntax is required. Consider the following code segment:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift">
func increment(n:Int) {
func increment(n:Int) {
Line 54: Line 54:




Swift protects us from common errors by ensuring that a (value-type) argument passed to a function cannot be altered by a function except under specific circumstances. When (in generally rare cases) this is desirable, a special syntax is required:
Swift protects us from common errors by ensuring that a (value-type) argument passed to a function cannot be altered by a function except under specific circumstances. When (in generally rare cases) this is desirable, a special syntax is required:
# We must ensure that the function declaration specifies that this function is ''enabled'' to modify a specific argument
# We must ensure that the function declaration specifies that this function is ''enabled'' to modify a specific argument
# Whenever we invoke the function, the function invocation must also specify that the specific argument may be modified
# Whenever we invoke the function, the function invocation must also specify that the specific argument may be modified
This strategy ensures that we don't accidentally modify function arguments.
This strategy ensures that we don't accidentally modify function arguments.


An example will serve to clarify:
An example helps to clarify:
<syntaxhighlight lang="swift">
<syntaxhighlight lang="swift">
func increment(n:inout Int) {
func increment(n:inout Int) {
Line 71: Line 71:


{{Observe|Section 5|
{{Observe|Section 5|
# ''Carefully'' compare the above code segment to the previous segment. What changes are required to modify the value of a (value-type) argument in a function?
# ''Carefully'' compare the above code segment to the previous segment. What changes are required to modify the value of a (value-type) argument in a function?
}}
}}




{{GoingDeeper|
{{GoingDeeper|
Technically, the {{SwiftKeyword|inout}} keyword specifies that the argument will be an L-Value. Refer to [W1038 L-Values and R-Values].
Technically, the {{SwiftKeyword|inout}} keyword specifies that the argument will be an L-Value. See [W1038 L-Values and R-Values].
}}
}}


== Exercises ==
== Exercises ==
{{Exercises|
{{Exercises|
# {{Assignment|J1351}} Create a journal and answer all questions in this experience. Be sure to include all sections of the journal, properly formatted.  
# {{Assignment|J1351}} Create a journal and answer all questions in this experience. Be sure to include all sections of the journal, properly formatted.  
# {{MMMAssignment|M1351-10}}
# {{MMMAssignment|M1351-10}}
}}
}}

Latest revision as of 16:13, 25 August 2023

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder
Othello Board

Prerequisites[edit]

Introduction[edit]

A very common need in many algorithms is swapping the values in two variables. It's also very common that these two variables are contained within an array.

Swapping[edit]

The first approach that most students take when swapping is the following:

let x = 5
let y = 7

x = y
y = x

Take the time to think through what you think will occur when the above code is executed. Then, try it.

ObserveObserveIcon.png
Observe, Ponder, and Journal: Section 1
  1. What syntax errors do you observe in the above code?
  2. What logic errors do you observe in the above code?


The primary issue that most students encounter in this scenario is overwriting the value of one of the variables, and then assigning this overwritten value to the other variable.

ObserveObserveIcon.png
Observe, Ponder, and Journal: Section 2

Assuming that the syntax errors in the above code segment are resolved:

  1. What will be the value of x after the code executes?
  2. What will be the value of y after the code executes?


Watch the following video: Swapping Algorithm (YouTube)

ObserveObserveIcon.png
Observe, Ponder, and Journal: Section 3
  1. What must be done to properly swap the values of two variables?

Functions that Modify Their Arguments[edit]

If we want to modify the value of a (value-type) argument passed to a function, a special syntax is required. Consider the following code segment:

func increment(n:Int) {
    n = n + 1
}

var x = 7
increment(n:x)
print(x)
ObserveObserveIcon.png
Observe, Ponder, and Journal: Section 4
  1. Will the above code compile correctly? If not, why not?


Swift protects us from common errors by ensuring that a (value-type) argument passed to a function cannot be altered by a function except under specific circumstances. When (in generally rare cases) this is desirable, a special syntax is required:

  1. We must ensure that the function declaration specifies that this function is enabled to modify a specific argument
  2. Whenever we invoke the function, the function invocation must also specify that the specific argument may be modified

This strategy ensures that we don't accidentally modify function arguments.

An example helps to clarify:

func increment(n:inout Int) {
    n = n + 1
}

var x = 7
increment(n:&x)
print(x)
ObserveObserveIcon.png
Observe, Ponder, and Journal: Section 5
  1. Carefully compare the above code segment to the previous segment. What changes are required to modify the value of a (value-type) argument in a function?


Going DeeperGoingDeeperIcon.png

Technically, the inout keyword specifies that the argument will be an L-Value. See [W1038 L-Values and R-Values].

Exercises[edit]

ExercisesExercisesIcon.png
  1.  J1351  Create a journal and answer all questions in this experience. Be sure to include all sections of the journal, properly formatted.
  2.  M1351-10  Complete  Merlin Mission Manager  Mission M1351-10.