递归思想
Posted chuanwen-tech
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归思想相关的知识,希望对你有一定的参考价值。
1 // Function to reverse arr[] from start to end 2 // 递归思想!!! 3 void rvereseArray(int arr[], int start, int end) 4 5 if (start >= end)//递归边界 6 return; 7 8 //交换操作:给出去的立即被给 9 int temp = arr[start]; 10 arr[start] = arr[end]; 11 arr[end] = temp; 12 13 // Recursive Function calling 14 rvereseArray(arr, start + 1, end - 1); 15
以上是关于递归思想的主要内容,如果未能解决你的问题,请参考以下文章