代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/426314/10264732
pas wndes.pas
unit WNDES;
//**************************************************************************
//*Des加密算法
//*
//*
//*
//*
//*
//*
//*杨海生:从网上得到此文件
//*Email:yanghai0437@hotmail.com
//*QQ:955743
//
www.eeworm.com/read/354965/10309319
frm frmwriteitem.frm
VERSION 5.00
Begin VB.Form frmWriteItem
Caption = "OPC Write Item"
ClientHeight = 2985
ClientLeft = 60
ClientTop = 345
ClientWidth = 6525
www.eeworm.com/read/280578/10312797
js calendar-big5-utf8.js
// ** I18N
// Calendar big5-utf8 language
// Author: Gary Fu,
// Encoding: utf8
// Distributed under the same terms as the calendar itself.
// For translators: please use
www.eeworm.com/read/280578/10312801
js calendar-zh.js
// ** I18N
// Calendar ZH language
// Author: muziq,
// Encoding: GB2312 or GBK
// Distributed under the same terms as the calendar itself.
// full day names
Calendar._DN =
www.eeworm.com/read/162078/10340954
c server.c
#define STRICT
#include
#include "server.h"
#include
#include
#include
// clients[] is a global array of
www.eeworm.com/read/280002/10369846
pas destr.pas
unit DESTR;
interface
uses
SysUtils, Classes, Windows;
type
TKeyByte = array[0..999] of Byte;
TDesMode = (dmEncry, dmDecry);
function EncryStr(Str, Key: string): string;
function Dec
www.eeworm.com/read/161772/10376447
c ptrmulti.c
/* Demonstrates passing a pointer to a multidimensional */
/* array to a function. */
#include
void printarray_1(int (*ptr)[4]);
void printarray_2(int (*ptr)[4], int n);
int main(
www.eeworm.com/read/279909/10377777
txt 例8.10.txt
例8.10 有两个数组a、b,各有10个元素,将它们对应地逐个相比(即a[0]与b[0]比,a[1]与b[1]比……)。如果a数组中的元素大于b数组中的相应元素的数目多于b数组中元素大于a数组中相应元素的数目(例如,a[i]>b[i]6次,b[i]>a[i]3次,其中i每次为不同的值),则认为a数组大于b数组,并分别统计出两个数组相应元素大于、等于、小于的次数。
程序如下:
m ...
www.eeworm.com/read/279909/10377910
txt 例8.13.txt
例8.13 用选择法对数组中10个整数按由小到大排序。所谓选择法就是先将10个数中最小的数与a[0]对换;再将a[1]到a[9]中最小的数与a[1]对换……每比较一轮,找出一个未经排序的数中最小的一个。共比较9轮。
下面以5个数为例说明选择法的步骤。
a[0] a[1] a[2] a[3] a[4]
3 6 1 9 ...
www.eeworm.com/read/279804/10392347
js 02.js
// Here we create an object representing the date of Christmas, 2007
// The variable xmas contains a reference to the object, not the object itself
var xmas = new Date(2007, 11, 25);
// When we copy