代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/256510/11992999
cpp pgm15_06.cpp
//
// This file contains the C++ code from Program 15.6 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/256510/11993286
cpp pgm04_20.cpp
//
// This file contains the C++ code from Program 4.20 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/256481/11997091
cpp chapter2-35.cpp
//文件名:CHAPTER2-35.cpp
#include
template
class Array
{
int i;
T *ar;
public:
Array(int c):i(c){ar=new T[c];}
void init(int n,T x){ar[n]=x;}
T& operator
www.eeworm.com/read/256481/11997380
cpp chapter3-10.cpp
//文件名:CHAPTER3-10.cpp
#include
template
class Array
{ T *ar;
public:
Array(int c){ar=new T[c];}
void init(int n,T x){ar[n]=x; }
T& operator[](int n){return ar[n];}
www.eeworm.com/read/342492/12016157
c exr10_9.c
//-----------------------------------------------
// Include Files
//-----------------------------------------------
#include
#include
//End Include Files----------------
www.eeworm.com/read/149030/12407175
cpp pgm15_04.cpp
//
// This file contains the C++ code from Program 15.4 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/149030/12407429
cpp pgm15_06.cpp
//
// This file contains the C++ code from Program 15.6 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/149030/12407922
cpp pgm04_20.cpp
//
// This file contains the C++ code from Program 4.20 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C++"
// by Bruno R. Preiss.
//
// Copyright (c) 1998
www.eeworm.com/read/336838/12413339
c averagevalue.c
// ****************************************************************
// Description: Library function to determine the
// average value of a integer array. Note this code stresses
// simplicity o
www.eeworm.com/read/148696/12441792
c funct_2d.c
#include
void show_2d_array(int array[][10], int rows)
{
int i, j;
for (i = 0; i < rows; i++)
for (j = 0; j < 10; j++)
printf("array[%d][%d] = %d\n", i, j, array