代码搜索:expression
找到约 10,000 项符合「expression」的源代码
代码结果 10,000
www.eeworm.com/read/486925/6520997
java expression.java
package com.javapatterns.interpreter;
/**
* Abstraction of a class representing terminal and non-terminal
* classes of the following little grammar:
*
* BooleanExp ::=
*
www.eeworm.com/read/403154/11521348
h expression.h
#ifndef EXPR_H
#define EXPR_H
struct Node
{
int coef;
int exp;
Node *next;
};
class Expression
{
public:
Expression(int coef[], int exp[], int n);
~Expression();
void InsertBefo
www.eeworm.com/read/403154/11521351
cpp expression.cpp
#include
#include "Expression.h"
Expression::Expression(int coef[], int exp[], int n)
{
first = new Node;
pre = first;
Node *p = first;
for (int i = 0; i < n; i++)
{
Nod
www.eeworm.com/read/262364/11590631
java expression.java
package calculate;/*** Title: * Description: * Copyright: Copyright (c) 2002* Company: * @author LinYueyu* @version 1.0*/import java.util.*;import java.lang.*;public class
www.eeworm.com/read/341217/12100674
java expression.java
package com.javapatterns.interpreter;
/**
* Abstraction of a class representing terminal and non-terminal
* classes of the following little grammar:
*
* BooleanExp ::=
*
www.eeworm.com/read/336808/12414734
英文regular expression
www.eeworm.com/read/234517/14110298
java expression.java
/*====================================================================*\
Expression.java
Expression class.
------------------------------------------------------------------------
This file is par