代码搜索:Node
找到约 10,000 项符合「Node」的源代码
代码结果 10,000
www.eeworm.com/read/159696/10621960
cpp node.cpp
#include "Fraction.cpp"
class node //节点node:s=0时存放分数,s=1时存放运算符
{
public:
bool s;
Fraction Fr;
char sign;
node():
www.eeworm.com/read/159396/10663074
gif node.gif
www.eeworm.com/read/351073/10683177
h node.h
#ifndef NODE_H
#define NODE_H
#include
#include
class Node
{
public:
enum Type { RegExp, Expression, Term, Factor, Atom, Terminal };
Node(Type type, const QString &str = "
www.eeworm.com/read/351073/10683198
cpp node.cpp
#include
#include "regexpparser.h"
Node::Node(Type type, const QString &str)
{
this->type = type;
this->str = str;
parent = 0;
}
Node::~Node()
{
qDeleteAll(children);
}
www.eeworm.com/read/276526/10731721
h node.h
template
struct Node{
//data members
T entry;
Node * next;
//constructors
Node();
Node(T item,Node *add_on=NULL);
};
template
Node::Node()
{
next=NULL;
www.eeworm.com/read/276326/10747756
h node.h
/*****************************************************************************
Copyright
www.eeworm.com/read/276324/10747861
java node.java
import java.net.*;
import java.io.*;
/**
* 用户链表的结点类
*/
public class Node {
String username = null;
Socket socket = null;
ObjectOutputStream output = null;
ObjectInputStream input = nu