摘要: Add Binary Given two binary strings, return their sum (also a binary string). For example,a = "11"b = "1"Return "100". 求两个二进制数的和 java代码: 阅读全文
posted @ 2017-03-17 17:23 世人谓我恋长安 阅读(119) 评论(0) 推荐(0) 编辑
摘要: String 字符串常量StringBuffer 字符串变量(线程安全)StringBuilder 字符串变量(非线程安全) 简要的说, String 类型和 StringBuffer 类型的主要性能区别其实在于 String 是不可变的对象, 因此在每次对 String 类型进行改变的时候其实都等 阅读全文
posted @ 2017-03-17 17:17 世人谓我恋长安 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Implement Queue using Stacks Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Remo 阅读全文
posted @ 2017-03-17 16:49 世人谓我恋长安 阅读(152) 评论(0) 推荐(0) 编辑