I am not from cs background and I am trying to make sense of what is used for what. In pseudocode I see a lot of this:
for i <--- 1 to n-1 do
j <--- find-Min(A,i,n)
A[j] <-> A[i]
end for
What are <--- and <-> used to refer to?
|
I am not from cs background and I am trying to make sense of what is used for what. In pseudocode I see a lot of this:
What are |
||||
|
|
|
EDIT: It just occurred to me that the first line might be missing
This becomes a legitimate use case of |
|||
|
|
|
There's nowhere close to universal agreement about the notation used in pseudocode. In this case I'd guess that In the first case, however, I think you're missing a character. It's probably supposed to be:
So it's a normal
in BASIC, or:
in a C-like language. |
|||
|
|
Left arrow for assignmentis used to make it obvious that the variable receives a new value, e.g.
I have seen this in:
Left-right-arrow for swapping elementsis also used to make the operation obvious in a symbolic way. I can't think of anything but pseudo code right now. |
||||
|
|