代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/122674/14676318
h array.h
#ifndef ARRAY_CLASS
#define ARRAY_CLASS
#include
#include
#ifndef NULL
const int NULL = 0;
#endif // NULL
enum ErrorType
{invalidArraySize, memoryAllocationErr
www.eeworm.com/read/222286/14698069
txt array.txt
1 37 52
2 49 49
3 52 64
4 20 26
5 40 30
6 21 47
7 17 63
8 31 62
9 52 33
10 51 21
11 42 41
12 31 32
13 5 25
14 12 42
15 36 16
16 52 41
17 27 23
18 17 33
19 13 13
20 57 58
21 62 42
www.eeworm.com/read/222285/14698098
txt array.txt
1 37 52
2 49 49
3 52 64
4 20 26
5 40 30
6 21 47
7 17 63
8 31 62
9 52 33
10 51 21
11 42 41
12 31 32
13 5 25
14 12 42
15 36 16
16 52 41
17 27 23
18 17 33
19 13 13
20 57 58
21 62 42
www.eeworm.com/read/221812/14719472
h array.h
template
class Array
{
private:
T *arr;
int size;
public:
Array(int sz = 100);
Array(const Array& a);
~Array(void);
int Size(void)const;
void operator=(const Array
www.eeworm.com/read/221812/14719478
cpp array.cpp
#include
#include
enum ErrorType{InvalidArraySize,MemoryAllocationError,IndexOutOfRange};
char *errorMsg[] = {"Invalid Array Size", "Memory Allocation Error", "Index Out O
www.eeworm.com/read/221695/14729077
c array.c
/*
* linux/fs/proc/array.c
*
* Copyright (C) 1992 by Linus Torvalds
* based on ideas by Darren Senn
*
* stat,statm extensions by Michael K. Johnson, johnsonm@stolaf.edu
*/
#inclu
www.eeworm.com/read/221293/14747739
class array.class
www.eeworm.com/read/120988/14777343
inc array.inc
;----------------------------------------------------------
; 作者:陈文尧
; 文件:Array.inc
; 版本:1.04
; 创建日期:2001.08.01
;----------------------------------------------------------
FARRAY struc
www.eeworm.com/read/220737/14790367
java array.java
//import java.io.*;
//import java.awt.*
//import java.applet.*
public class Array
{
public static void main(String arg[])
{
int i,j,k,max,min;
int[][] A={{5,3,4},{2,6,7},{1,8,9}};