代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/269014/4247913
cs plxcompile.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace PlxCompiler
{
class PlxCompile
{
//一些数组的上界
const int MAX_LINECHAR = 1
www.eeworm.com/read/435341/1864804
cpp ch8_4.cpp
//*********************
//** ch8_4.cpp **
//*********************
#include
void main()
{
int iArray[10];
int sum=0;
int* iPtr=iArray; //用数组名iArray给指针初始化
fo
www.eeworm.com/read/421708/2048927
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/421708/2048936
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/421664/2049633
java~2~ fordemo.java~2~
package controlsentence;
public class ForDemo {
public static void main(String[] args) {
for (int i = 0; i < array.length; i++) {
System.out.print(array[i] + " "); //无条件遍历数组
}
www.eeworm.com/read/405122/2295264
java arraystact.java
package org.yancan;
//利用数组实现简单的堆栈
public class arrayStact
{
private int pointcounter;//stact bottom pointer
int[] stact = new int[100];
public arrayStact()
{
for(int i =0 ;i
www.eeworm.com/read/405122/2295270
java arraystact.java
package org.yancan;
//利用数组实现简单的堆栈
public class arrayStact
{
private int pointcounter;//stact bottom pointer
int[] stact = new int[100];
public arrayStact()
{
for(int i =0 ;i
www.eeworm.com/read/392137/2515879
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/392137/2515991
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/389693/2539945
java quicksort.java
package book.oo.sort.impl;
import book.oo.sort.ISortNumber;
/**
* 采用快速排序法实现数组的排序
*/
public class QuickSort implements ISortNumber {
public QuickSort(){
}
/**
* 快速排序法
*/
public