排列組合之組合問題 網易深度學習工程師面試題 C++ 使用10方法

來源:互聯網
上載者:User

標籤:==   --   iostream   fine   def   交換   網易   面試題   bin   

#include <iostream>#include <vector>#include <cstdio>#define UL unsigned long intusing namespace std;// 後r個全是1的時候終止bool hasDone(vector<int>& index, int r){    for(auto i=index.size()-r; i < index.size(); i++){        if(index[i] == 0) return false;    }    return true;}vector<int> combination_justk(int n, int r, int k){    vector<int> index((UL)n, 0);    // 設定初始index, 前k個設定為1, 即r個1, n-r個0    for(int i=0;i<r;i++){        index[i] = 1;    }    // 記錄初始組合    while(!hasDone(index, r)){        k--;        for(int i=0;i<index.size()-1;i++){            // 找到10的時候,交換10變成01            if(index[i] == 1 && index[i+1] == 0){                index[i] = 0;                index[i+1] = 1;                // 將i左邊的序列恢複成最小的狀態,即前面是1後面是0                int left_one_num=0;                for(int j=0;j<i;j++){                    if(index[j] == 1){                        index[j] = 0;                        index[left_one_num++] = 1;                    }                }                if(k-1==0){                    return index;                }                else{                    break;                }            }        }    }    return {};}void netease_test(int n, int m, int k){    if(n<=0 || m<=0 || k<=0) return;    auto index = combination_justk(n+m, n, k);    for(auto i:index){        if(i==1){            cout << ‘a‘;        }        else{            cout << ‘z‘;        }    }    cout << endl;}int main(int argc, char* argv[]){    netease_test(2, 2, 6);// zzaa    return 0;}

排列組合之組合問題 網易深度學習工程師面試題 C++ 使用10方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.