生成組合

#include<bits/stdc++.h> int a[] = {19,2,38,46,5,64,7,81,92,10,11,12,13,14,15}; //n個元素選擇m個生成組合 int count_1(int n){ int cnt = 0; while( n ){ n = n & ( n -1); ++cnt; }
相關文章
相關標籤/搜索