摘要:
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 此题看似简单,但有几种情况要注意:对于10这种数字的处理;对于溢出的处理。 溢出不意味着ans_bef... 阅读全文
摘要:
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1... 阅读全文
摘要:
对Queue 进队出队的使用不是很了解,刷题时想要直接用,所以查了一下。平时用的话用add 和remove 即可。 Queue 是接口。 LinkedList 实现了Queue接口,可当做Queue使用。 Queue list=new LinkedList(); 进队: boolean ad... 阅读全文