代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/327175/13096450
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/324558/13258603
java spamatrix.java
public class SpaMatrix{
int rows; //行数
int cols; //列数
int dNum; //非零元个数
MyVector v; //数组
SpaMatrix(int max){ //构造函数
rows = cols = dNum = 0;
v = ne
www.eeworm.com/read/138003/13274266
h findpath.h
#pragma once
#include "stack.h"
#include "queue.h"
#include "tree.h"
class CFindPath
{
public:
POINT * ThePath; //路径数组
int TheSteps; //步数
CMap* Map; //地图指针
void Release();
www.eeworm.com/read/323486/13339001
txt 代码说明.txt
Private Sub Command1_Click()
Rem 定义动态数组
Dim a() As Single, c() As Single, b() As Single, cb() As Single
Dim cba() As Single, xcb() As Integer, xb() As Integer
Dim m As Integer, n As Integer, l A
www.eeworm.com/read/321622/13401660
bas imagefunc.bas
Attribute VB_Name = "ImageFunc"
Const ChunkSize As Long = 100
Const BlockSize As Long = 100
Const TempFile As String = "tempfile.tmp"
Dim ByteData() As Byte '定义数据块数组
Dim DiskFile As String '图像文
www.eeworm.com/read/318849/13471125
txt heapif.txt
#define N 10
#include
#include
using std::cout;
using std::cin;
using std::endl;
main()
{
int A[N]; //建立一个数组
int i;
void heapif
www.eeworm.com/read/318849/13471126
cpp heapif.cpp
#define N 10
#include
#include
using std::cout;
using std::cin;
using std::endl;
main()
{
int A[N]; //建立一个数组
int i;
void heapif
www.eeworm.com/read/316494/13522080
cpp 图的搜索.cpp
#include
using namespace std;
struct vertex //节点
{
bool _new; //被访问过了?
unsigned adj_ver_numb; //邻接节点数目
unsigned * adj; //邻接节点索引数组
int _data; //
www.eeworm.com/read/315308/13546962
txt 5.txt
#include
#define m 8
#define n 8
#define MAXSIZE 100
typedef struct /*方向数组*/
{int i,j;}item;
typedef struct{
item p;
int di;
} datatype;
typedef struct
{
int
www.eeworm.com/read/135620/5883557
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra