不是数组越界不越界的问题
int a[15]={1, 2, 2, 3, 3, 4, 5, 5, 6, 6, 8, 8, 9, 9};
int a[15]={1, 2, 2, 3, 3, 4, 5, 5, 6, 6, 8, 8, 9, 9};
[fly]存在即是合理[/fly]
#include<iostream> using namespace std; int main() { int i,j,k,x,temp,flat=0; int b[14]={2,2,3,3,4,4,5,5,6,6,7,7,8,9};// 牌已排序。 int a[14]={0}; for(i=0; i<14; i++) a[i]=b[i]; for (x=0; x<13; x++) //在数组最后位置加一个数,便以下判断是否全部清0 { if(a[x]==a[x+1]&& a[x]!=0 )//改变策略,除掉将牌 { a[x]=0; a[x+1]=0; } else continue; for(i=0; i<14; i++) //找出连续或相同的三个数,并标记为0 for(j=0; j<14; j++) for(k=0; k<14; k++) { if(i==j||j==k||i==k) continue; if( a[i]==a[j] && a[k]==a[j]||a[i]+1==a[j] && a[j]+1==a[k]&& a[i]!=0 ) { a[i]=0; a[j]=0; a[k]=0; } } int s=0; for(i=0;i<14;i++) { s+=a[i]; } //cout<<a[i];} // cout<<endl; // cout<<s<<"s "; if(s!=0) //若加的将不胡,则下次试其他将时还回原值。 { for(i=0; i<14; i++) a[i]=b[i]; } if(s==0) { flat=1; break; } } if(flat) cout<<"恭喜您!已胡牌!"<<endl; else cout<<"对不起!不能胡牌!"<<endl; getchar(); return 0; } 有兴趣的朋友试下看有没有问题,谢谢 。
#include <math.h> #include <stdio.h> #include <string.h> #define Copy(a, b) memcpy((void *)a, (void *)b, 40) int change(int *a, int flag[], int m) { //依据flag数组和 m值将 a处理(减 3) int n = 0; if (m & 1) a[flag[1]] -= 3, ++n; if (m & 2) a[flag[2]] -= 3, ++n; if (m & 4) a[flag[3]] -= 3, ++n; if (m & 8) a[flag[4]] -= 3, ++n; return n; } int find(int *a) { //找到 3张连续的牌,都标记,并返回真值 for (int i = 1;i < 7;++i) if (a[i] && a[i+1] && a[i+2]) { --a[i];--a[i+1];--a[i+2]; return 1; } return 0; } int main() { int i, j, m, n, flag = 0; // int a[10] = {0, 2, 1, 2, 2, 1, 2, 0, 2, 2}; // int a[10] = {0, 2, 1, 2, 2, 1, 3, 0, 0, 3}; int a[10] = {0, 3, 0, 2, 2, 2, 2, 0, 0, 3}; //a[i]存储 牌号 i的个数 int b[10], c[10], temp1[5] = {0}, temp2[11] = {0}; for (i = 1;i < 10;++i) { temp1[0] += a[i] >= 3; //temp1[0]为牌数不小于 3的个数 if (temp1[0] && !temp1[temp1[0]]) temp1[temp1[0]] = i; //将不小于 3的牌数存储到temp1中 } for (i = (int)pow(2, temp1[0]);i;--i) //所有牌数不小于 3的共有 i种组合 { Copy(b, a); m = change(b, temp1, i-1); //m表示已标记为 3个相同 的个数 for (j = 1;j < 10;++j) { temp2[0] += b[j] >= 2; //同上,此时temp2存储不小于 2的牌数 if (temp2[0] && !temp2[temp2[0]]) temp2[temp2[0]] = j; } for (j = temp2[0];j;--j) { Copy(c, b);c[temp2[j]] -= 2; n = 0;while (find(c)) ++n; if (4 == m+n){flag = 1;break;} } if (flag) { puts("YES!");break; } } return 0; }