湖边的白杨树

探索是一种乐趣

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2015年11月15日

摘要: A abstract class An abstract class is a class that must be inherited and have the methods overridden. It can not be instantiated. And at least one of 阅读全文
posted @ 2015-11-15 21:11 fdyang 阅读(419) 评论(0) 推荐(0)

摘要: 1. Convert string from "AAABBCC" to "A3B2C2". 当面试者提出这个问题的时候,首先需要确认题意:譬如:字符串是不是顺序的,是否有字符重复出现。 例如: ABBAACB , AAABBCCCBBAA。 如果是顺序的话可以一次遍历字符,如果是杂序的话,需要2次遍 阅读全文
posted @ 2015-11-15 21:10 fdyang 阅读(826) 评论(0) 推荐(0)