代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/269737/11080427
cpp mandel.cpp
#define WANT_MATH
#define WANT_STREAM
#include "include.h"
#include "array1.h"
#include "cx.h"
// Consider the sequence of complex numbers
// z[0] =0; z[n+1] = z[n] ** 2 + c
// where
www.eeworm.com/read/413871/11138612
c misc.c
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the l
www.eeworm.com/read/411683/11232772
c 4-7.c
#include
int main()
{
int a[2][4] = { {1,2,3,4},{5,6,7,8} };
int b[4][2],i,j;
printf("array a:\n");
for(i=0;i
www.eeworm.com/read/147676/12540120
sound-faq
bttv and sound mini howto
=========================
There are alot of different bt848/849/878/879 based boards available.
Making video work often is not a big deal, because this is handled
com
www.eeworm.com/read/248708/12545225
h coutingsort.h
template
< class T >
void CoutingSort(T a[], int N, int& KCN, int& RMN)
{
int k = 0;
for ( int i = 0;i < N;i++ )
{
if ( ++KCN && a[i] > k )
{
k = a[i];
RMN++;
}
}
int
www.eeworm.com/read/238340/13892185
cpp 带通横切.cpp
#include
typedef struct { /* segy - trace identification header */
int tracl; /* trace sequence number within line */
int tracr; /* trace sequence number w
www.eeworm.com/read/238320/13893147
c arrayadd.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x\n", count);
printf("Address of the array
www.eeworm.com/read/238320/13893219
c arraytwo.c
#include
void main(void)
{
int count[10];
float salaries[5];
long distances[10];
printf("Address of the array count is %x &count is %x\n",
count, &count);
p
www.eeworm.com/read/135438/13931560
pas unit2.pas
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls,unit1, Forms, Dialogs;
Function GASDEV:real;
Procedure SVDVAR(V:matrx2; MA, NP:integer; W:array of real;
www.eeworm.com/read/135438/13931681
txt polcof.txt
procedure POLCOF(XA, YA:array of real; N:integer; var COF:array of real);
var
X, Y:array[0..15] of real;
I,J,K:integer;
XMIN,DY:real;
begin
For J:=1 To N do
begin
X