y***n 发帖数: 1594 | 1 这个感觉老是搞的不是很清楚,转行猥琐男求助好的解释。。 | g*********e 发帖数: 14401 | 2 一个粗俗点的办法,就是用一个stack,stack里面每个元素存每个Iteration所有的变
量。
foo(argument(s) arg) {
argument a, b;
// compute a, b from arg
foo(a);
foo(b);
}
stack stk;
while(!stk.empty()) {
argument top=stk.top();
argument b= // compute b from top
argument a= // compute a from top
stk.push(b);
stk.push(a);
} | y***n 发帖数: 1594 | |
|