搜索结果
找到约 166 项符合
Next 的查询结果
按分类筛选
- 全部分类
- 书籍 (22)
- 其他 (10)
- 技术资料 (9)
- 单片机编程 (8)
- 数据结构 (7)
- 其他书籍 (5)
- Java编程 (5)
- 源码 (5)
- 教程资料 (4)
- 可编程逻辑 (4)
- VC书籍 (4)
- 操作系统开发 (4)
- 电源技术 (3)
- 人工智能/神经网络 (3)
- 网络 (3)
- 数学计算 (3)
- 软件下载 (2)
- ARM (2)
- 电子书籍 (2)
- 系统设计方案 (2)
- 其他行业 (2)
- SCSI/ASPI (2)
- 数值算法/人工智能 (2)
- 单片机开发 (2)
- Java书籍 (2)
- 加密解密 (2)
- 技术管理 (2)
- 软件工程 (2)
- 软件设计/软件工程 (2)
- 文章/文档 (2)
- matlab例程 (2)
- 软件 (2)
- 习题答案 (2)
- 技术书籍 (1)
- 通信网络 (1)
- 嵌入式综合 (1)
- 开发工具 (1)
- PCB相关 (1)
- 数据库系统 (1)
- 教育系统应用 (1)
- 汇编语言 (1)
- 语音压缩 (1)
- 压缩解压 (1)
- VxWorks (1)
- DSP编程 (1)
- 编译器/解释器 (1)
- 中间件编程 (1)
- 通讯编程文档 (1)
- 游戏 (1)
- 微处理器开发 (1)
- J2ME (1)
- JavaScript (1)
- RFID编程 (1)
- Delphi控件源码 (1)
- Internet/网络编程 (1)
- Linux/Unix编程 (1)
- FlashMX/Flex源码 (1)
- 通讯/手机编程 (1)
- SQL Server (1)
- 行业发展研究 (1)
- MTK (1)
- MySQL数据库 (1)
- Linux/uClinux/Unix编程 (1)
- 技术教程 (1)
- 多媒体处理 (1)
- 论文 (1)
数据结构 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *
编程题(15_01.c)
结构
struct student
{
long num
char name[20]
int score
struct student *next
}
链表练习:
(1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中
的学号、成绩由键盘输入,一共n个节点。
(2).编写函数void print(struct student *head),输出 ...
数值算法/人工智能 This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself. F
This little Program allows you to send commands to the CardReader (CT-BCS) or to the Card itself.
First you will be ask to what Port the Reader is connected (0=COM1, 1=COM2).
Then the Class-Byte (CLA), Instruction-Byte (INS), Parameter 1 (P1), Parameter 2 (P2).
If wou don愒 want to send Parameter 3 ...
单片机开发 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.
数据结构 字符匹配中的KMP算法
字符匹配中的KMP算法,计算NEXT值实现部分。
数据结构 Findstr.cpp运行结果: GetNext-IndexKMP的结果: 输入主串s:acabaabcaabaabcac 输入模式串t:abaabcac 主串s长=17 模式串t长=8
Findstr.cpp运行结果:
GetNext-IndexKMP的结果:
输入主串s:acabaabcaabaabcac
输入模式串t:abaabcac
主串s长=17
模式串t长=8
next[0]=-1 next[1]=-1 next[2]=0 next[3]=0 next[4]=1
next[5]=-1 next[6]=0 next[7]=-1 next[8]=0
模式串在主串的位置从第10个字符开始
GetNext-IndexKMP的结果:
next[1]=0 next[2]=1 next[3] ...
操作系统开发 我所采用的内存管理思想是链表管理思想
我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为
struct node
{
char* p
int memosize
int flag
struct node* next
}
这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
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 ...
操作系统开发 操作系统课程设计_进程调度演示源程序 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef struct
操作系统课程设计_进程调度演示源程序
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
typedef struct node
{
char name[10] /*进程标识符*/
int prio /*进程优先数*/
int round /*进程时间轮转时间片*/
int cputime /*进程占用CPU时间*/
int needtime /*进程到完成还要的时间*/
int count /*计数器* ...
数据结构 KMP算法的思想一般数据结构书都有讲
KMP算法的思想一般数据结构书都有讲,KMP算法本身与求next数组的算法很类似,无符号整型数据与整型数据比较大小
JavaScript mastering dojo The book really rolls out the red carpet for Dojo to emerge with guns blazing! Th
mastering dojo
The book really rolls out the red carpet for Dojo to emerge with guns
blazing! The authors show you how easy it is to use impressive
widgets without installing a thing. I was amazed to discover that
JavaScript is not just a toy language, how Dojo is built on top of it,
and how both a ...