情大神看看我的C++程序哪出问题了,,谢谢
声明一个类,将任意一个排序算法和查找算法封装为类的成员函数,实现对数组元素的排序和查找操作。在主函数中测试。#include<iostream>
using namespace std;
class A{
public:
void sf(int a[],int n)
{
int i,j;
int temp;
for(i=1;i<n;i++){
int j=i;
temp=a[i];
while(j>0 && temp<a[j-1]){
a[j]=a[j-1];
j--;
}
a[j]=temp;
for(int k=0;k<n;k++)
cout<<a[k]<<" ";
cout<<endl;
}
}
};
int main()
{
return 0;
}
我发现我封装完函数后就无从下手了,不知那个数组在哪定义好。。。