摘要: package com.study; /** * 从尾到头打印单链表 * */ class Node { public int data; public Node next; public Node() { } } class Stack { private static... 阅读全文
posted @ 2015-07-01 15:35 高适 阅读(821) 评论(0) 推荐(0) 编辑
摘要: ##Java里面的String>Conceptually, Java Strings are sequences of Unicode characters.>>Java里面的String都是Unicode字符串>>Java does not have a built-in string type.... 阅读全文
posted @ 2015-07-01 10:46 高适 阅读(232) 评论(0) 推荐(0) 编辑