搜索结果
找到约 92 项符合
node 的查询结果
按分类筛选
- 全部分类
- 其他 (9)
- 技术资料 (7)
- 数据结构 (6)
- 单片机编程 (5)
- 单片机开发 (5)
- 技术管理 (4)
- matlab例程 (4)
- 书籍 (4)
- Java编程 (3)
- 源码 (3)
- VIP专区 (3)
- 通信网络 (2)
- 其他嵌入式/单片机内容 (2)
- 电子书籍 (2)
- 其他书籍 (2)
- 操作系统开发 (2)
- Linux/Unix编程 (2)
- 数值算法/人工智能 (2)
- 通讯编程文档 (2)
- 习题答案 (2)
- 嵌入式综合 (1)
- 无线通信 (1)
- 可编程逻辑 (1)
- 源码/资料 (1)
- VHDL/FPGA/Verilog (1)
- 编辑器/阅读器 (1)
- 软件设计/软件工程 (1)
- 文件格式 (1)
- Java书籍 (1)
- 其他行业 (1)
- 网络 (1)
- Ajax (1)
- 汇编语言 (1)
- 编译器/解释器 (1)
- 人工智能/神经网络 (1)
- 系统设计方案 (1)
- JavaScript (1)
- 通讯/手机编程 (1)
- 驱动编程 (1)
- Linux/uClinux/Unix编程 (1)
- 其他 (1)
数值算法/人工智能 北京大学ACM比赛题目 Consider an infinite full binary search tree (see the figure below), the numbers in the
北京大学ACM比赛题目
Consider an infinite full binary search tree (see the figure below), the numbers in the nodes are 1, 2, 3, .... In a subtree whose root node is X, we can get the minimum number in this subtree by repeating going down the left node until the last level, and we can also find the ma ...
Java编程 贪吃蛇*要点分析: *1)数据结构:matrix[][]用来存储地图上面的信息
贪吃蛇*要点分析:
*1)数据结构:matrix[][]用来存储地图上面的信息,如果什么也没有设置为false,
* 如果有食物或蛇,设置为true;nodeArray,一个LinkedList,用来保存蛇的每
* 一节;food用来保存食物的位置;而Node类是保存每个位置的信息。
*2)重要函数:
* changeDirection(int newDirection) ,用来改变蛇前进的方 ...
Linux/Unix编程 看n2实例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows
看n2实例 #Create a simulator object
set ns [new Simulator]
#Define different colors for data flows
#$ns color 1 Blue
#$ns color 2 Red
#Open the nam trace file
set nf [open out-1.nam w]
$ns namtrace-all $nf
set f0 [open out0.tr w]
set f1 [open out1.tr w]
#Define a finish procedure
proc finish {} ...
操作系统开发 我所采用的内存管理思想是链表管理思想
我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为
struct node
{
char* p
int memosize
int flag
struct node* next
}
这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
操作系统开发 操作系统课程设计_进程调度演示源程序 #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 /*计数器* ...
其他 abaqus 爆炸模拟 *Heading ** Job name: cbs Model name: Model-1 *Preprint, echo=NO, model=NO, history=N
abaqus 爆炸模拟
*Heading
** Job name: cbs Model name: Model-1
*Preprint, echo=NO, model=NO, history=NO, contact=NO
**
** PARTS
**
*Part, name=Part-1
*Node
其他行业 *Heading ** Job name: cbs Model name: Model-1 *Preprint, echo=NO, model=NO, history=NO, contact=NO
*Heading
** Job name: cbs Model name: Model-1
*Preprint, echo=NO, model=NO, history=NO, contact=NO
**
** PARTS
**
*Part, name=Part-1
*Node
Ajax js 异步加载 tree 采用ajax技术
js 异步加载 tree
采用ajax技术,在点击tree的node以后从数据库中读取其下面的分支并进行显示,适合于tree数据量较大的情况下异步从数据库中查询并显示于tr
其他 //顺序表的建立、查找、插入与删除 #include <stdio.h> #include <malloc.h> #include <stdlib.h> #
//顺序表的建立、查找、插入与删除
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#define ListSize 100 //表最大长度
//结构定义
typedef struct SeqList
{
int node[ListSize] //存放表结点
int length //当前表长度
} SeqList
//插入元素
insertList(SeqList *list, int e)
{
int i=list->length-1 ...
单片机开发 CAN1.c and CAN2.c are a simple example of configuring a CAN network to transmit and receive data o
CAN1.c and CAN2.c are a simple example of configuring a CAN network to
transmit and receive data on a CAN network, and how to move information to
and from CAN RAM message objects. Each C8051F040-TB CAN node is configured
to send a message when it s P3.7 button is depressed/released, with a 0x11
...