代码搜索:Node
找到约 10,000 项符合「Node」的源代码
代码结果 10,000
www.eeworm.com/read/462429/7201776
class node.class
www.eeworm.com/read/462429/7201781
java node.java
//结点类,封装各个极大极小结点
class Node{
String name;//节点名
boolean isMax;//判断是极大还是极小结点
boolean isCut;//判断是否已被剪枝
int data;//结点值
int pos;//在列表中的位置
Node former;//父结点
Node next;//应走的下一个子结点
NodeList s
www.eeworm.com/read/461510/7226227
h node.h
//Date: June 22, 2002
//Name: node.h in "manhattan" project
//define the mobile node class and all its function
#ifndef NODE_H_
#define NODE_H_
#include "manhattan.h"
//mobile node class
www.eeworm.com/read/461510/7226249
h node.h
#ifndef NODE_H_
#define NODE_H_
//Date: Apr 6, 2002
//Name: node.h in "freeway" project
//define the mobile node class and all its function
#include "freeway.h"
//return a random double
www.eeworm.com/read/461147/7232579
cpp node.cpp
#include"Node.h"
Node::Node()
{
next=NULL;
}
Node::Node(int data,Node *link)
{
entry=data;
next=link;
}
www.eeworm.com/read/461147/7232584
h node.h
#ifndef NODE_H_
#define NIDE_H_
#include
using namespace std;
struct Node
{
int entry;
Node *next;
Node();
Node(int data,Node *link);
};
#endif
www.eeworm.com/read/461147/7232588
obj node.obj
www.eeworm.com/read/461147/7232595
cpp node.cpp
#include"Node.h"
Node::Node()
{
next=NULL;
}
Node::Node(int item,Node *add_on)
{
entry=item;
next=add_on;
}
www.eeworm.com/read/461147/7232601
h node.h
#ifndef NODE_H_
#define NODE_H_
#include
using namespace std;
struct Node
{
int entry;
Node *next;
Node();
Node(int item,Node *add_on=NULL);
};
#endif
www.eeworm.com/read/461147/7232607