最近在学习objective-c,教程中有一段代码没弄清楚,是关于递归的,我用截图的形式发上来,给大家看看
void singTheSong(int numberOfBottles)
{
if (numberOfBottles == 0) {
printf("there are simply no more bottles of beer on the wall.\n");
} else {
printf("%d bottles of beer on the wall. %d bottles of beer.\n",
numberOfBottles, numberOfBottles);
int oneFewer = numberOfBottles - 1;
printf("Take one dowm, pass it around, %d bottles of beer on the wall.\n",
oneFewer);
singTheSong(oneFewer);
printf("put a bottle in the recycling, %d empty bottles in the bin.\n",
numberOfBottles);
}
}
int main(int argc, const char * argv[])
{
singTheSong(99);
return 0;
}
它的输出结果是这样的:
99 bottles of beer on the wall. 99 bottles of beer.
Take one dowm, pass it around, 98 bottles of beer on the wall.
98 bottles of beer on the wall. 98 bottles of beer.
Take one dowm, pass it around, 97 bottles of beer on the wall.
97 bottles of beer on the wall. 97 bottles of beer.
Take one dowm, pass it around, 96 bottles of beer on the wall.
96 bottles of beer on the wall. 96 bottles of beer.
Take one dowm, pass it around, 95 bottles of beer on the wall.
......(中间重复的省略)
1 bottles of beer on the wall. 1 bottles of beer.
Take one dowm, pass it around, 0 bottles of beer on the wall.
there are simply no more bottles of beer on the wall.
put a bottle in the recycling, 1 empty bottles in the bin.
put a bottle in the recycling, 2 empty bottles in the bin.
......(中间重复的省略)
put a bottle in the recycling, 98 empty bottles in the bin.
put a bottle in the recycling, 99 empty bottles in the bin.
Program ended with exit code: 0
这段代码,我看不懂的地方是,它如何从numberOfBottles等于0的时候,又继续运行了
printf("put a bottle in the recyling, %d empty bottles in the bin.\n",
numberOfBottles);
这段代码呢?并且numberOfBottles一直在+1
请大家帮我解惑,谢谢了~
Le point clé est : vous devez comprendre que les appels de fonction auront des
压栈
opérations, et que les appels récursifs reviendront回到
avant la récursion, et继续
exécuteront le code après la récursivité. appeler.Remplacez votre
singTheSong(99);
parsingTheSong(3);
et dites-moi.入参为3, 下面两行打印
3 bouteilles de bière au mur. 3 bouteilles de bière.
Prenez-en un, faites-le circuler, 2 bouteilles de bière au mur.
第一次递归调用singTheSong(2), 入参为2.
注意, 此时singTheSong(oneFewer); 之后的printf打印不会出现, 因为递归调用还没有返回;
后面你看到的 numberOfBottles一直在+1 现象的直接原因就在这.
2 bouteilles de bière au mur. 2 bouteilles de bière.
Prenez-en un, faites-le circuler, 1 bouteille de bière au mur.
第二次递归调用singTheSong(1), 入参为1
同样, singTheSong(oneFewer) 之后的printf打印不会出现;
1 bouteilles de bière au mur. 1 bouteilles de bière.
Prenez-en un, faites-le circuler, 0 bouteille de bière au mur.
第三次递归调用singTheSong(0), 入参为0, 直接打印下面一行, 并退出;
注意, 这里的退出是退回到第二次递归的栈. 并从singTheSong(oneFewer)之后的printf开始执行.
il n'y a tout simplement plus de bouteilles de bière sur le mur.
因为第二次递归入参为1, 所以这里打印下面一行
第二次递归调用退回到 第一次 递归的栈继续执行
mettre une bouteille au recyclage, 1 bouteille vide à la poubelle.
因为第一次递归入参为2, 所以这里打印下面一行
第一次递归调用退回到最初的singTheSong(3)继续执行
mettre une bouteille au recyclage, 2 bouteilles vides à la poubelle.
最初的singTheSong(3)调用入参为3, 所以打印下面一行.
mettre une bouteille au recyclage, 3 bouteilles vides à la poubelle.
Problème d'ordre d'exécution, il n'y a pas de situation où
numberOfBottles
est toujours +1singTheSong(99);
doit être appelé lors de l'exécution desingTheSong(98);
mais à ce momentsingTheSong(99);
n'a pas fini d'exécuterCe code n'est appelé que lorsque
singTheSong(0);
est terminé. Le codesingTheSong(1);
inférieur dans le corps de la méthodeprintf
est exécuté, puis de manière récursive, en commençant à exécuter 2, 3, 4... 99