代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/161587/10394129
out minheap.out
Elements in array order
The 3 elements are
5 20 10
Insert of 15 succeeded
An insert has failed
Elements in array order
The 4 elements are
5 15 10 20
The min element is 5
Deleted min elemen
www.eeworm.com/read/161587/10394569
out maxheap.out
Elements in array order
The 3 elements are
20 10 5
Insert of 15 succeeded
An insert has failed
Elements in array order
The 4 elements are
20 15 5 10
The max element is 20
Deleted max eleme
www.eeworm.com/read/161587/10394662
readme
LIST OF ALL C++ PROGRAMS
All programs were originally developed and tested using
Borland C++ version 5.01 for Windows 95. The codes in this
directory have been altered as necessary so that they
www.eeworm.com/read/161587/10394872
cpp insert.cpp
// insert into a sorted array
#include
template
void Insert(T a[], int& n, const T& x)
{// Insert x into the sorted array a[0:n-1].
// Assume a is of size > n
int
www.eeworm.com/read/161585/10395411
pas des.pas
unit Des;
interface
uses SysUtils;
type
TKeyByte = array[0..5] of Byte;
TDesMode = (dmEncry, dmDecry);
function EncryStr(Str, Key: String): String;
function DecryStr(Str, Key: S
www.eeworm.com/read/161447/10412187
c sysmotvpdutil.c
/* sysMotVpdUtil.c - Vital Product Data Routines. */
/* Copyright 1998, 1999 Motorola, Inc., All Rights Reserved */
/*
modification history
--------------------
01g,18oct01,mil Fixed sysVpdPktParse
www.eeworm.com/read/161444/10412925
c sysmotvpd.c
/* sysMotVpd.c - Motorola Vital Product Data Routines. */
/* Copyright 1998,1999 Motorola, Inc., All Rights Reserved */
/*
modification history
--------------------
01d,18oct01,mil Fixed sysVpdPktP
www.eeworm.com/read/161442/10413147
c sysmotvpdutil.c
/* sysMotVpdUtil.c - Vital Product Data Routines. */
/* Copyright 1998, 1999 Motorola, Inc., All Rights Reserved */
/*
modification history
--------------------
01f,18oct01,mil Fixed sysVpdPktParse
www.eeworm.com/read/161189/10440034
m domre.m
%%%%%%%%%% start of function domre.m %%%%%%%%%%
%
% Function to solves an inverse problem using Minimum Relative
% Entropy Inversion
%
% Written by: Roseanna M. Neupauer
% Modification Date: Apri
www.eeworm.com/read/279234/10452505
pl fig04_13.pl
#!/usr/bin/perl
# Fig. 4.13: fig04_13.pl
# Linear search of an array.
# populate @array with the even integers from 0 to 198
for ( $i = 0; $i < 100; ++$i ) {
$array[ $i ] = 2 * $i;
}