4 栈的操作
摘要:
1 package com.wwj.cn; 2 3 public interface SqStackInter { 4 boolean Push(SqStack sqStack, SElemType e);// 进栈操作 5 6 boolean Pop(SqStack sqStack, SElemT 阅读全文
posted @ 2017-05-25 22:27 WenjieWangFlyToWorld 阅读(112) 评论(0) 推荐(0) 编辑