significantfrank
我是阿里巴巴架构师,团队直招技术岗,请联系我:fulan.zjf@alibaba-inc.com

导航

 

2012年11月21日

摘要: 栈特性: LIFOpublic class StackApp { public static void main(String[] args) { Stack stack = new Stack(10); stack.push(10); stack.push(20); stack.pus... 阅读全文
posted @ 2012-11-21 16:09 significantfrank 阅读(125) 评论(0) 推荐(0) 编辑
 
摘要: 简单排序冒泡排序public class BubbleSort { public static void main(String[] args) { ArrayBub a = new ArrayBub(20); a.insert(14); a.insert(144); a.insert(14... 阅读全文
posted @ 2012-11-21 16:08 significantfrank 阅读(133) 评论(0) 推荐(0) 编辑