设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1140|回复: 9
打印 上一主题 下一主题

新学C++,有个问题

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 23:46:41 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
才开始看C++.照着书敲了一段程序.结果是"v' : undeclared identifier"说是有个错误.我不大懂.大哥帮帮忙吧.谢谢
程序:
#include<iostream>
using namespace std;
class ARR
{
    int m;
    int a[100];
public:
    ARR(int x[],int size)
    {
        m=size;
        for(int i=0;i<m;i++)
            a[i]=x[i];
    }
    void delsame();
    void show()
    {
        for(i=0;i<m;i++)
        {
            cout<<a[i]<<"\t";
            if((i+1)%5==0)
                cout<<edl;
        }
        cout<<endl;
    }
};
void ARR::delsame()
{
    int i,j;
    for(i=0;i<m-1;i++)
    {
        if(a[i]=a[i+1])
        {
            for(j=i+1;j<m-1;j++)
        {
            a[j]=a[j+1];
        }
        m--;
        i--;
        }
    }
}
int main()
{
    int b[16]={1,2,2,3,3,4,4,5,6,6,7,7,8,8,9,10,10}
    ARR v(b,sizeof(b)/sizeof(b[0]));
    v.show();
    v.delsame();
    v.show();
    return 0;
2#
发表于 2009-11-3 23:46:43 | 只看该作者
好了有点小错
#include<iostream>
using namespace std;
class ARR
{
    int m;
    int a[100];
public:
    ARR(int x[],int size)
    {
        m=size;
        for(int i=0;i<m;i++)
            a[i]=x[i];
    }
    void delsame();
    void show()
    {
        for(int i=0;i<m;i++)
        {
            cout<<a[i]<<"\t";
            if((i+1)%5==0)
                cout<<endl;
        }
        cout<<endl;
    }
};
void ARR::delsame()
{
    int i,j;
    for(i=0;i<m-1;i++)
    {
        if(a[i]=a[i+1])
        {
            for(j=i+1;j<m-1;j++)
        {
            a[j]=a[j+1];
        }
        m--;
        i--;
        }
    }
}
int main()
{
    int b[20]={1,2,2,3,3,4,4,5,6,6,7,7,8,8,9,10,10};
    ARR v(b,sizeof(b)/sizeof(b[0]));
    v.show();
    v.delsame();
    v.show();
    return 0;
}
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 23:46:45 | 只看该作者
你改为这样就没问题了:
#include <iostream>
using namespace std;
class ARR
{
    int m;
    int a[100];
public:
    ARR(int x[], int size)
    {
        m = size;
        for(int i = 0; i < m; i++)
            a[i] = x[i];
    }
    void delsame();
    void show()
    {
        for(int i = 0; i < m; i++)
        {
            cout << a[i] << "\t";
            if((i + 1) % 5 == 0)
                cout << endl;
        }
        cout<<endl;
    }
};
void ARR::delsame()
{
    int i, j;
    for(i = 0; i < m - 1; i++)
    {
        if(a[i] = a[i + 1])
        {
            for(j = i + 1; j < m - 1;j++)
            {
                a[j] = a[j + 1];
            }
            m--;
            i--;
        }
    }
}
int main()
{
    int b[] = {1, 2, 2, 3, 3, 4, 4, 5, 6, 6, 7, 7, 8, 8, 9, 10, 10};
    ARR v(b, sizeof(b) / sizeof(b[0]));
    v.show();
    v.delsame();
    v.show();
    return 0;
}
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 23:46:46 | 只看该作者
提个意见,大家贴程序求助或者帮求助者修改程序,特别是整段整段的,最好注释一下,你改动了什么地方,别人的错的什么地方。

谢谢合作,o(∩_∩)o...
回复 支持 反对

使用道具 举报

5#
发表于 2009-11-3 23:46:47 | 只看该作者
呵呵.知道了.太大意了
回复 支持 反对

使用道具 举报

6#
发表于 2009-11-3 23:46:48 | 只看该作者
恩.同意.我对着程序查了半天才,找到的.不过,还是谢谢楼上的两位大哥了
回复 支持 反对

使用道具 举报

7#
发表于 2009-11-3 23:46:50 | 只看该作者
谢谢斑竹的建议。。。不过我这个好像又没注意。。下次改。。。呵呵
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
template <class T>
class ARR
{
    int m;
    vector<T> vec ;
    vector<T>::iterator it;
public:
    ARR(T a[],int size)
    {
     vector<T> vec1(a,a+size);
     vec=vec1;
    }
    void delsame()
    {
        sort(vec.begin(),vec.end());
        it=unique(vec.begin(),vec.end());
        vec.erase(it,vec.end());
    }
    void show()
    {   
        for(vector<int>::iterator iter=vec.begin(); iter!=vec.end();iter++)
        {
            cout<<*iter<<"\t";            
        }
        cout<<endl;
    }
};

int main()
{
    int b[]={1,2,2,3,3,4,4,5,6,6,7,7,8,8,9,10,10};
    ARR<int> v(b,sizeof(b)/sizeof(b[0]));
    v.show();
    v.delsame();
    v.show();
    return 0;
}
回复 支持 反对

使用道具 举报

8#
发表于 2009-11-3 23:46:54 | 只看该作者
不好意思.这个程序的目地是删除序列中的想同的数.但是结果没有把删除的结果显示出来啊
回复 支持 反对

使用道具 举报

9#
发表于 2009-11-3 23:46:56 | 只看该作者
我的是把删除过后的结果显示出来。。结果是1。。。10
回复 支持 反对

使用道具 举报

10#
发表于 2009-11-3 23:46:58 | 只看该作者
非常感谢
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 19:34 , Processed in 0.108050 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表