代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/363962/9928173
sum array.sum
www.eeworm.com/read/363888/9932722
cpp array.cpp
//: C16:Array.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "../require.h"
#include
www.eeworm.com/read/363596/9943638
h array.h
/* $Id: array.h 6 2007-01-22 00:45:22Z drhanson $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Arra
www.eeworm.com/read/363596/9943664
c array.c
static const char *rcsid = "$Id: array.c 6 2007-01-22 00:45:22Z drhanson $";
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
#include "mem.h"
#defi
www.eeworm.com/read/363449/9950957
cpp array.cpp
/*------------------------------------------------------------------------*/
/* */
/* ARRAY.CPP
www.eeworm.com/read/363449/9951024
h array.h
/*------------------------------------------------------------------------*/
/* */
/* ARRAY.H
www.eeworm.com/read/167540/9964109
c-array
www.eeworm.com/read/167035/9984067
h array.h
/* 安全数组(可扩充大小)
*
*/
#ifndef ARRAY_CLASS
#define ARRAY_CLASS
#include
template
class Array
{
private:
// 一个动态申请的包含 size 个元素的表
T *alist;
int size;
public
www.eeworm.com/read/362558/9992629
h array.h
#define MAXSIZE 1000 /*非零元素的个数最多为1000*/
/*稀疏矩阵三元组表的类型定义*/
typedef struct
{
int row,col; /*该非零元素的行下标和列下标*/
ElementType e; /*该非零元素的值*/
}Triple;
typedef struct
{
Triple data[MA
www.eeworm.com/read/362274/10007995
java array.java
package oesee.teach.java.one;
import java.util.ArrayList;
import java.util.List;
/**
* Sample4: 数组和链表
*
* @author chen.jia.xun(Robanco) www.oesee.com
*
*/
public class Array {
pu