What is happening when we decrement the code here:
temp[--countArray[getDigit(position, input[tempIndex], radix)]]
If temp is 1 in this case: are we decrementing first so that we are assigning to 0? How immediate is this decrement? It always seems to confuse me within array brackets.
Try unpacking the brackets on different levels of indentation:
In human-readable terms, it calls
getDigit()
to index intocountArray
, then decrements that value and uses it to index intotemp
.The decrement operator
--x
is different fromx--
because of what it returns. By the end of the operation,x
always ends up as one less than it was, but--x
returns the new value ofx
, whilex--
returns the old value ofx
from before it was decremented. The same applies for++x
andx++
.