程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 找出字符串的組合

找出字符串的組合

編輯:C++入門知識

比如:“abc”字符串的組合為:a,b,c,ab,ac,bc,abc。   這裡我用兩種方法實現:   位操作:  

#include<iostream>  
#include<vector>  
using namespace std;  
  
//位操作算法  
void main()  
{  
    char* data="abcd";  
    int length=strlen(data);  
    int last=(1<<length)-1;  
    cout<<last<<endl;  
      
    int i;  
    for(i=1;i<=last;i++)  
    {  
        int currentIndex=length-1;  
        while(currentIndex>=0)  
        {  
            if(i&(1<<currentIndex))  
            {  
                cout<<data[length-currentIndex-1];                  
            }  
            --currentIndex;  
        }  
        cout<<endl;  
    }  
}  

 

  遞歸操作:    
void algorithm(char* data,int num,vector<char>& result)  
{  
    if(!num)  
    {  
        vector<char>::iterator it=result.begin();  
        for(it;it!=result.end();++it)  
        {  
            cout<<*it;  
        }  
        cout<<endl;  
        return;  
    }  
    if(*data=='\0')  
        return;  
    result.push_back(*data);  
    algorithm(data+1,num-1,result);  
    result.pop_back();  
    algorithm(data+1,num,result);  
}  
  
void main()  
{  
    char* data="abcd";  
    int length=strlen(data);  
    vector<char> result;  
    int i;  
    for(i=1;i<=length;i++)  
    {  
        algorithm(data,i,result);  
    }  
}  

 


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