伪代码清晰易懂,有点像自然语言,主要突出的是算法的核心部分,而忽略部分的实现细节。
参考:https://16sixteen.github.io/algorithm/pseudocode
参考:https://riteme.site/blog/2016-4-23/fake-code.html
赋值语句:
x←y 将y的值赋予x x←y←i 将i的值赋予x和y
条件语句:
If A Then B If A Then B Else C End If
循环语句:
While c ... End While Do ... Until c End do For i from 0 to 99 ... End For
数组:
A[1...i]表示A[1]...A[i]