搜索结果

找到约 92 项符合 node 的查询结果

数值算法/人工智能 北京大学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 ...
https://www.eeworm.com/dl/518/286896.html
下载: 105
查看: 1160

Java编程 贪吃蛇*要点分析: *1)数据结构:matrix[][]用来存储地图上面的信息

贪吃蛇*要点分析: *1)数据结构:matrix[][]用来存储地图上面的信息,如果什么也没有设置为false, * 如果有食物或蛇,设置为true;nodeArray,一个LinkedList,用来保存蛇的每 * 一节;food用来保存食物的位置;而Node类是保存每个位置的信息。 *2)重要函数: * changeDirection(int newDirection) ,用来改变蛇前进的方 ...
https://www.eeworm.com/dl/633/307219.html
下载: 152
查看: 1029

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 {} ...
https://www.eeworm.com/dl/619/315552.html
下载: 67
查看: 1089

操作系统开发 我所采用的内存管理思想是链表管理思想

我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为 struct node { char* p int memosize int flag struct node* next } 这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
https://www.eeworm.com/dl/531/317249.html
下载: 49
查看: 1076

操作系统开发 操作系统课程设计_进程调度演示源程序 #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 /*计数器* ...
https://www.eeworm.com/dl/531/330760.html
下载: 46
查看: 1096

其他 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
https://www.eeworm.com/dl/534/354748.html
下载: 104
查看: 1539

其他行业 *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
https://www.eeworm.com/dl/668/354750.html
下载: 64
查看: 1186

Ajax js 异步加载 tree 采用ajax技术

js 异步加载 tree 采用ajax技术,在点击tree的node以后从数据库中读取其下面的分支并进行显示,适合于tree数据量较大的情况下异步从数据库中查询并显示于tr
https://www.eeworm.com/dl/702/375638.html
下载: 53
查看: 1063

其他 //顺序表的建立、查找、插入与删除 #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 ...
https://www.eeworm.com/dl/534/390208.html
下载: 140
查看: 1037

单片机开发 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 ...
https://www.eeworm.com/dl/648/391753.html
下载: 95
查看: 1066