代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/444284/7614574
pdf 数组和广义表.pdf
www.eeworm.com/read/442262/7656365
ppt 第10章 数组.ppt
www.eeworm.com/read/438234/7733612
cpp 约瑟夫环(数组表示).cpp
#include
using namespace std;
#define maxlen 30
typedef int elemtype;
typedef struct{
elemtype elem[maxlen];
int length;
}sqlist;
sqlist joseph;
void initlist_sq(sqlist &l
www.eeworm.com/read/299484/7847383
pdf 04数组和矩阵.pdf
www.eeworm.com/read/298817/7933423
c 螺旋数组1.c
#include"stdio.h"
#include"iostream.h"
int array[11][11];
int temp;
int ROW;
void godown(int &m,int &a)
{
for(temp=1;temp
www.eeworm.com/read/298817/7933440
c 螺旋数组2.c
#include
#include
#include
#include
#define h 5 // height
#define w 5 // width
void main ()
{
int a[h][w];
int d=0, direct[4]
www.eeworm.com/read/397350/8054749
ppt 第07章_数组.ppt
www.eeworm.com/read/196841/8054979
ppt 第8章 数组.ppt
www.eeworm.com/read/396055/8135266
ppt 数组和广义表.ppt
www.eeworm.com/read/333496/12678394
txt 后缀数组实现源码.txt
#include
#include
#include
using namespace std;
const int maxn=210000;
char s[maxn];
int len,k;
int sa[maxn],rank[maxn],h[maxn],height[maxn];
int num[maxn];
inline b