首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴bofengqiye的代码贴全部
#include<cstdio>
#include<cstring>
using namespace std;
int *str2int(char *str)
  {
      int i ,len=strlen(str);
      int *a=new int [(len+1)*sizeof(int)];
      for(i=0;i<len;i++)
      a[i]=(int)str[len-i-1]-48;
      return a;
  }
  int check(int *a,int n)
......................
阅读全部 | 2012年1月8日 07:53
1
bofengqiye