代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/489307/6478434
cpp 字符数组2.cpp
#include //输入输出函数库
#include//字符串函数库
void main()
{
char name[26];
char s1[10];
printf("请输入您的姓名:");
scanf("%s",name);
printf("请输入一个字符串:");
scanf("%s",s1);
www.eeworm.com/read/488643/6483142
doc char07 数组.doc
www.eeworm.com/read/484696/6572687
txt 数组间代码转换.txt
import java.lang.reflect.Array;
import java.util.Date;
public class TestCast {
/**
* @param args
*/
//public static void main(String[] args) {
/** *//**
www.eeworm.com/read/481360/6639381
txt 动态数组的创建.txt
一唯数组:
int *a;
int N;
scanf("%d", &N);
a = (int *) malloc(N * sizeof(int));
....
free(a);
二唯数组:
int **p;
int M,N,i;
scanf("%d%d",&M,&N);
int S=M*N;
p=(int **)malloc(N*sizeof(int *))
www.eeworm.com/read/481249/6646534
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/481249/6646539
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/476936/6743084
txt 数组的动态申请.txt
struct test//二维数组的动态申请(1)
{
float *m2;
};
test *m1;
/m1 = new test[T+1];
for(int ii1 = 0; ii1 < T+1; ii1++ )
{
m1[ii1].m2=new float[T+1];
}
float **m; //二维数组的动
www.eeworm.com/read/407780/11410808
txt pku 3321 树状数组.txt
#include
#include
#include
#include
#include
#include
using namespace std;
#define PB push_back
//PKU 3321 树状数组
#define NMAX 10
www.eeworm.com/read/407780/11410810
txt~ pku 3321 树状数组.txt~
#include
#include
#include
#include
#include
#include
using namespace std;
#define PB push_back
//PKU 3321 树状数组
#define NMAX 10
www.eeworm.com/read/407780/11410812
txt pku 2774 后缀数组.txt
#include
using namespace std;
//PKU 2774 后缀数组
const int maxn = 100000*2;
int c[maxn], h[maxn], smem[3][maxn];
int *SA, *nSA, *Rank, *nRank;
int MAX, n, K;
char num[maxn];
int l