代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/209274/15224141

h array.h

template class Array { private: int FSize; // 数组的大小 T* alist; // 指向数组的第一个元素的指针 void Allocate(); //为数组申请内存空间 public: Array(int sz=50); //构造函数 Array(const Array &x); /
www.eeworm.com/read/209274/15224151

cpp array.cpp

#include "stdafx.h" using namespace std; template void Array::Allocate() { alist=new T[FSize]; if (alist==0) cerr
www.eeworm.com/read/208576/15243754

h array.h

// Fig. 11.6: Array.h // Array class for storing arrays of integers. #ifndef ARRAY_H #define ARRAY_H #include using std::ostream; using std::istream; class Array { friend os
www.eeworm.com/read/208576/15243755

cpp array.cpp

// Fig 11.7: Array.cpp // Member-function definitions for class Array #include using std::cout; using std::cin; using std::endl; #include using std::setw; #include
www.eeworm.com/read/208576/15243765

h array.h

// Fig. 11.17: Array.h // Array class for storing arrays of integers. #ifndef ARRAY_H #define ARRAY_H #include using std::ostream; using std::istream; class Array { friend o
www.eeworm.com/read/208576/15243766

cpp array.cpp

// Fig 11.7: Array.cpp // Member-function definitions for class Array #include using std::cout; using std::cin; using std::endl; #include using std::setw; #include
www.eeworm.com/read/208576/15243773

h array.h

// Fig. 11.6: Array.h // Array class for storing arrays of integers. #ifndef ARRAY_H #define ARRAY_H #include using std::ostream; using std::istream; class Array { friend os
www.eeworm.com/read/208576/15243775

cpp array.cpp

// Fig 11.7: Array.cpp // Member-function definitions for class Array #include using std::cerr; using std::cout; using std::cin; using std::endl; #include using std::set
www.eeworm.com/read/207653/15266106

h array.h

/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */ #ifndef ARRAY_INCLUDED #define ARRAY_INCLUDED #define T Array_T typedef struct T *T; extern T Array_new (int le
www.eeworm.com/read/207653/15266118

c array.c

static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $"; #include #include #include "assert.h" #include "array.h" #include "arrayr