您好,登錄后才能下訂單哦!
把開發(fā)過程比較重要的一些內(nèi)容段收藏起來,下邊內(nèi)容內(nèi)容是關(guān)于C++數(shù)組反轉(zhuǎn)的內(nèi)容。
#include <stdio.h>
{
}
void reverse(int a[],int n)
{
static int c = 0;
if(c<n/2)
{
xchg(&a[c],&a[n-c-1]);
++c;
reverse(a,n);
}
}
void show(int a[],int n)
{
int i;
for(i=0;i<n;i++)
{
}
}
int main()
{
int a[]={1,2,4,5,3,6};
reverse(a,6);
show(a,6);
return 0;
}
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。