程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++程序設計實踐指導1.1刪除序列中相同的數改寫要求實現,程序設計實踐1.1

C++程序設計實踐指導1.1刪除序列中相同的數改寫要求實現,程序設計實踐1.1

編輯:C++入門知識

C++程序設計實踐指導1.1刪除序列中相同的數改寫要求實現,程序設計實踐1.1


改寫要求1:改寫為以指針為數據結構

#include <iostream>  
#include <cstdlib>

using namespace std;  

class ARP  
{  
    int m;  
    int* p;  
    int count[10];
 
public:  
    ARP(int x[],int size)  
    {  
        m = size;  
        p = new int [m];  
        for (int i =0;i<m;i++)  
        {  
            p[i]=x[i];
        }  
          for (int i =0;i<m;i++)  
        {  
            count[i]=1;
        } 
    }  
    void delsame();  
    void show1();  
    void show2();
    ~ARP()  
    {  
        delete [] p;
    }  
};  
void ARP::show1()
{
     for(int i=0;i<m;i++)  
    {  
        cout<<p[i]<<"\t";  
         
    }  
    cout<<endl;     
}
void ARP::show2()  
{  
    for(int i=0;i<m;i++)  
    {  
        cout<<p[i]<<"\t";  
         
    }  
      for(int i=0;i<m;i++)  
    {  
        cout<<count[i]<<"\t";  
         
    }  
    cout<<endl;  
}  
void ARP::delsame()  
{  
    int i,j;  
    for(i=0;i<m-1;i++)  
    {  
        if(p[i]==p[i+1])  
        { 
            count[i]=count[i]+1; 
            for(j=i+1;j<m-1;j++)  
            {  
                p[j]=p[j+1];  
            }  
            m --;  
            i --;  
        }         
    }  
}  
int main()  
{  

    int b[16] = {1,2,2,3,4,4,5,6,6,7,8,8,8,9,10,10};  
    ARP temp(b,sizeof(b)/sizeof(b[0]));  
    temp.show1();      
    temp.delsame();  
    temp.show2();
    system("pause") ;     
    return 0;  
}

  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved