0
Can any tell me what programming language goes like this?
I was searching a bout algorithms on the internet and came across this: make all the element of input_array = mulitple itself -1; run findMin(input_array) put result into o_Max; return o_Max * -1; I've never seen anything like that, can anyone tell me?
3 Réponses
+ 2
i think that is pseudo code, it meant to describe an algorithm in more "general" way so we can apply it into actual code.
+ 1
That looks like pseudo code. It's english + prog language bits mixed together.
0
Thanks guys