代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/485002/6569852
cpp 磁盘调度.cpp
#include
#include
#include
void FCFS(int array[],int m)// 先来先服务算法
{ int j,i,now;
float sum = 0,avg;
coutnow;
sum=a
www.eeworm.com/read/481988/6634625
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/481239/6645304
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
www.eeworm.com/read/480077/6676527
asm p10.asm
TITLE 8086 ALP to search a number in the array for assembler.
.model small
.stack 100
.data
ARRAY DB 63H,32H,45H,75H,12H,42H,09H,14H,56H,38H ; Array of ten numbers
SER_NO DB
www.eeworm.com/read/476355/6757854
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
www.eeworm.com/read/409897/11307862
cc initialize.cc
// File: Initialize.cc
/*
* Copyright (c) 1998-1999 Murphy Cheng-Che Chen
*
* This program is free software; you can redistribute it and/or modify
* it under
www.eeworm.com/read/409272/11337499
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
www.eeworm.com/read/405708/11459033
sv 04.03.09_snippet-1.sv
/**********************************************************************
* Arrays of arrays
*
* Author: Stuart Sutherland
*
* (c) Copyright 2003, Sutherland HDL, Inc. *** ALL RIGHTS RESERVED
www.eeworm.com/read/403555/11514907
cpp sorting.cpp
# include
# include
# include
# include
#define Max 100000
typedef int RandomNum;
RandomNum Array1[Max]; //定义一个最大长度为Max的数组 Array1, 用来存放产生的伪随机数
Ra