摘要:
using System;using System.Collections;using System.Text;namespace myWorkFlow.kernel{ //边表结点类 public class EdgeNode { public int adjvex; public EdgeNode next; public EdgeNode() { next=null; } } ... 阅读全文
posted @ 2007-07-03 11:01 赣江源 阅读(275) 评论(0) 推荐(0) 编辑