Insection sort what does value := A[i] mean?
-
insertionSort(array A) { This procedure sorts in ascending order. } begin for i := 1 to length(A)-1 do begin value := A[i]; j := i - 1; done := false; repeat { To sort in descending order simply reverse the operator i.e. A[j] < value } if A[j] > value then begin A[j + 1] := A[j]; j := j - 1; if j < 0 then done := true; end else done := true; until done; A[j + 1] := value; end; end; what does value := A[i] do , does it mean make the value to what ever is in {i}
-
Answer:
A is an array, essentially an ordered list of values. Individual values in that list are accessed by indexing the array, which is what the brackets are about. A[0] is the first value, A[1] is the second value, and so on. The index doesn't have to be a specific number. It can be a variable or other expression to compute the index number. That's what A[i] and A[j+1] are about. Each uses the current value of the variable (i or j in these cases) to calculate the index. So, if that's what you meant by "do what ever is in {i}", then you're right.
Natalia Foster at Yahoo! Answers Visit the source
Other answers
yes. it is the assignment operator for some languages, e.g. Pascal
c
Related Q & A:
- How do I permanently block a user forever? I mean, find or enter the username, when the user isnt on my list?Best solution by Yahoo! Answers
- Could we use wifi in the philippines? i mean if u have a wifi enabled phone/laptop, will u be able to use it?Best solution by Yahoo! Answers
- What does being technical on a skateboard mean?Best solution by answers.yahoo.com
- What does the quote "I am strong because I am weak" mean?Best solution by Yahoo! Answers
- What does 'everything happens for a reason' mean?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.