首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
平平和史密斯的代码贴
→
C语言
[C语言]求大神指导,八皇后问题,运行不了
#include<stdio.h>
#include<math.h>
#include<malloc.h>
#define Stacksize 8
#define STACK_INIT_SIZE 100
int solution=0;
typedef struct
{
int *base;
int *top;
int stacksize;
}Sqstack;
......................
阅读全部
| 2016年10月28日 18:03
1
平平和史密斯
全部(1)
C语言(1)