代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/116331/14978654
java bubblesortb.java
// Lab1 Part B: BubbleSortB.java
// Applet sorts an array's values using an efficient bubble sort, so the number of
// comparisons will decrease by one after each pass. The bubble sort will also end
www.eeworm.com/read/116329/14978695
java bubblesorta.java
// Lab 1 Part A: BubbleSortA.java
// Applet sorts an array's values using an efficient bubble sort, so the number of
// comparisons will decrease by one after each pass.
import java.awt.*;
import
www.eeworm.com/read/116130/14987538
exf pbch.exf
Section Type Array Num Name Real Name Base Number Increment
// -------------------------------------------------------------------------------------------------
End
Section
www.eeworm.com/read/215124/15073520
c hugeint.c
#include
#include
void main (void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L,
sizeof(long int))) == NULL)
www.eeworm.com/read/213529/15130687
h hmm.h
// file : hmm.h
// version: 1.03 [August 21, 1995]
/*
Copyright (C) 1994 Richard Myers and James Whitson
Permission is granted to any individual or institution to use, copy, or
redistribute th
www.eeworm.com/read/207217/15279329
cpp main.cpp
// Exercise 11.4 Outputting a SharedData array - main.cpp
// The shareddata.h and shareddata.cpp file are as for Ex 11.3
#include "shareddata.h"
#include
using std::cout;
using std::en
www.eeworm.com/read/206867/15286614
c hugeint.c
#include
#include
void main(void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L,
sizeof(long int))) == NULL)
www.eeworm.com/read/206867/15287239
c sum_2d.c
#include
long sum_array(int array[], int elements)
{
long sum = 0;
int i;
for (i = 0; i < elements; i++)
sum += array[i];
return(sum);
}
void main(voi
www.eeworm.com/read/206867/15287707
c hugeint.c
#include
#include
void main(void)
{
long int i;
int huge *big_array;
if ((big_array = (int huge *) halloc (100000L, sizeof(long int))) == NULL)