2016年2月27日

Implement Stack using Queues

摘要: import java.io.IOException;import java.util.Scanner;//邻接矩阵的无向图的深度与广度优先遍历//邻接矩阵的无向图的Prim算法,求最小生成树public class MatrixUDGS { private char[] mVexs; // 顶点集 阅读全文

posted @ 2016-02-27 18:23 wzyxidian 阅读(189) 评论(0) 推荐(0) 编辑

Min Stack

摘要: package cn.edu.xidian.sselab.stack;import java.util.Stack;/** * * @author zhiyong wang * title: Min Stack * content: * Design a stack that supports pu 阅读全文

posted @ 2016-02-27 00:09 wzyxidian 阅读(203) 评论(0) 推荐(0) 编辑

导航