搜索结果
找到约 190 项符合
next 的查询结果
按分类筛选
- 全部分类
- 技术资料 (28)
- 书籍 (22)
- 其他 (10)
- 单片机编程 (9)
- 数据结构 (7)
- 源码 (5)
- 其他书籍 (5)
- Java编程 (5)
- 操作系统开发 (4)
- 教程资料 (4)
- 可编程逻辑 (4)
- VC书籍 (4)
- 电源技术 (3)
- 网络 (3)
- 数学计算 (3)
- 人工智能/神经网络 (3)
- Java书籍 (3)
- 软件 (2)
- 习题答案 (2)
- 数值算法/人工智能 (2)
- 加密解密 (2)
- 软件工程 (2)
- ARM (2)
- 嵌入式综合 (2)
- 软件下载 (2)
- 电子书籍 (2)
- SCSI/ASPI (2)
- 技术管理 (2)
- 单片机开发 (2)
- 文章/文档 (2)
- matlab例程 (2)
- 其他行业 (2)
- 系统设计方案 (2)
- 软件设计/软件工程 (2)
- 论文 (1)
- PCB相关 (1)
- 行业应用文档 (1)
- Linux/uClinux/Unix编程 (1)
- DSP编程 (1)
- 多媒体处理 (1)
- 数据库系统 (1)
- 通讯/手机编程 (1)
- 技术书籍 (1)
- 技术教程 (1)
- 开发工具 (1)
- 通信网络 (1)
- 压缩解压 (1)
- Linux/Unix编程 (1)
- Internet/网络编程 (1)
- 教育系统应用 (1)
- 游戏 (1)
- 语音压缩 (1)
- 编译器/解释器 (1)
- 汇编语言 (1)
- 通讯编程文档 (1)
- 微处理器开发 (1)
- J2ME (1)
- FlashMX/Flex源码 (1)
- VxWorks (1)
- VHDL/FPGA/Verilog (1)
- Delphi控件源码 (1)
- 中间件编程 (1)
- JavaScript (1)
- MySQL数据库 (1)
- SQL Server (1)
- 行业发展研究 (1)
- RFID编程 (1)
- MTK (1)
Java书籍 package query public class LinkQuery { private Node front private Node vear public Link
package query
public class LinkQuery
{
private Node front
private Node vear
public LinkQuery()
{
this.front=null
this.vear=null
}
public void add(int i)
{
Node newNode=new Node(i)
if(vear==null && front==null)
{
vear=newNode
front=newNode
return
}
vear.next=ne ...
其他行业 自然激励下建筑结构的模态参数识别
自然激励下建筑结构的模态参数识别,首先通过自然激励技术(next)得到结构的自由响应,然后由自回归滑动平均(arma)方法识别模态参数。
单片机开发 This will sample all 8 A/D-channels. The result will be send out via UART1 and can be seen within
This will sample all 8 A/D-channels.
The result will be send out via UART1 and can be seen within
any terminal-program (9600 Baud).
With each pressed key the next channel will be converted.
No interrupts are used.
VC书籍 图的深度优先遍历和广度优先遍历
图的深度优先遍历和广度优先遍历,以邻接矩阵方式输入。(按照提示输入)! - The chart depth first spreads the calendar and the breadth first spreads the calendar, is next the matrix way input. (According
数据结构 KMP算法的思想一般数据结构书都有讲
KMP算法的思想一般数据结构书都有讲,KMP算法本身与求next数组的算法很类似,无符号整型数据与整型数据比较大小
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...
人工智能/神经网络 The EM algorithm is short for Expectation-Maximization algorithm. It is based on an iterative optimi
The EM algorithm is short for Expectation-Maximization algorithm. It is based on an iterative optimization of the centers and widths of the kernels. The aim is to optimize the likelihood that the given data points are generated by a mixture of Gaussians. The numbers next to the Gaussians give the re ...
DSP编程 CCS编程环境 使用的是汇编加C的混合编程方法: The programme of the Correlation Algorithm. Using INT2 to get the input s
CCS编程环境 使用的是汇编加C的混合编程方法:
The programme of the Correlation Algorithm.
Using INT2 to get the input signal.
Array x, in first step, is the input signal produced by programme,
in next step, is the input signal get from A/D,
the length is 128, 32-bit floating point.
Array y, in first s ...
技术资料 More_Than_a Core_en
While examining 32-bit microcontrollers last month, Tom decided that the
STMicroelectronics STM32 was worth a second look. With the new ARM Cortex M3 core,
good peripherals, integration, and energy efficiency, this could be just the MCU for your
next project.
软件工程 Written by Microsoft software legend Juval Lowy, Programming WCF Services is the authoritative intro
Written by Microsoft software legend Juval Lowy, Programming WCF Services is the authoritative introduction to Microsoft s new, and some say revolutionary, unified platform for developing service-oriented applications [SOA] on Windows. Relentlessly practical, the book delivers insight, not documenta ...