码迷,mamicode.com
首页 > 其他好文 > 详细

递归思想

时间:2019-08-18 13:56:06      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:思想   nbsp   function   array   func   res   div   oid   call   

 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 }

 

递归思想

标签:思想   nbsp   function   array   func   res   div   oid   call   

原文地址:https://www.cnblogs.com/chuanwen-tech/p/11371928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!