程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 順序表的轉置

順序表的轉置

編輯:關於C語言

#include<iostream> 
using namespace std; 
typedef int ElemType; 
const int MaxSize = 1000; 
class SequenList 

     protected: 
         ElemType a[MaxSize]; 
         int len; 
     public: 
         void exchange( int n)  //逆置 
         { 
             for(int i = 0;i<=n/2-1;i++) 
             { 
                 ElemType t = a[i]; 
                 a[i] = a[n-i-1]; 
                 a[n-i-1]=t; 
             } 
         } 
         void input(int n) 
         { 
             len = n; 
             for(int i = 0;i<n;i++) 
             { 
                 cin>>a[i]; 
             } 
         } 
         void print(int n) 
         { 
             for(int i = 0;i<=n-1;i++) 
             { 
                 cout<<a[i]<<' '; 
             } 
             cout<<endl; 
         } 
 
}; 
 
 
int main() 

    int n; 
    cout<<"請輸入表中元素個數"<<endl; 
    cin>>n; 
    SequenList a; 
    cout<<"請輸入表中元素值"<<endl; 
    a.input(n); 
    a.print(n); 
    a.exchange(n); 
    a.print (n); 
    system("pause"); 
    return 0; 
}

作者“程序人生”

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