2016年12月5日
摘要: LinkedList的数据结构就是双向链表,如下所示: 构造器: add: get: remove: 阅读全文
posted @ 2016-12-05 19:53 wzyy 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 方法一、自定义的链表实现package com.code.yuesefu; public class YueSeFuList { public static void main(String[] args) { int count = 41;//申请一个指定长度的链表 Node n = YueSeFuList.createNodes(coun... 阅读全文
posted @ 2016-12-05 19:52 wzyy 阅读(1830) 评论(0) 推荐(0) 编辑