代码搜索结果
找到约 10,000 项符合
State Machine 的代码
state.h
//state.h
#ifndef _STATE_H_
#define _STATE_H_
class Context; //前置声明
class State
{
public:
State();
virtual ~State();
virtual void OperationInterface(Context* ) = 0;
virtual void Op
state.txt
Arad,366
Bucharest,0
Craiova,160
Dobreta,242
Eforie,161
Fagaras,176
Giurgiu,77
Hirsova,151
Iasi,226
Lugoj,244
Mehadia,241
Neamt,234
Oradea,380
Pitesti,10
Rimnicu Vilces,193
Sibiu,253
T
state.txt
ex.dpr - hungary
798999 09:57:17 27 мар 2005 flower 1076 Pascal Accepted 0.015 292 K
kuhn-munkres
http://www.math.uwo.ca/~mdawes/courses/344/kuhn-munkres.html
ex2.dpr - flow
797913 22:11:25 25
state.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Entity
{
public class State
{
int _stateid;
string _reamrk;
public int StateI
state.inc
-- WARNING: Do NOT edit the input and output ports in this file in a text
-- editor if you plan to continue editing the block that represents it in
-- the Block Editor! File corruption is VERY likel
state.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity state is
port(clk : in std_logic;
t10_ena :out std_logic;
t20_ena:out std_logic;
t10a :in s
state.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
state.java
package fss;
import shared.*;
import shared.Error;
import java.lang.*;
import java.util.*;
import java.io.*;
abstract public class State {
public static final int NOT_EVALUATED = -1;
p