Fork me on GitHub
摘要: 15.反转链表 输入一个链表,反转链表后,输出链表的所有元素。 解法一:(使用栈) 解法二: 16.合并两个排序的链表 输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。 解法一: public class Solution { public ListNod 阅读全文
posted @ 2018-01-16 23:27 郭耀华 阅读(407) 评论(0) 推荐(0) 编辑
摘要: ``` # bytes object b = b"example" # str object s = "example" # str to bytes bytes(s, encoding = "utf8") # bytes to str str(b, encoding = "utf-8") # an alternative ... 阅读全文
posted @ 2018-01-16 14:41 郭耀华 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 对于输出的size计算: out_height=((input_height filter_height + padding_top+padding_bottom)/stride_height )+1 out_width=((input_width filter_width + padding_le 阅读全文
posted @ 2018-01-16 11:02 郭耀华 阅读(339) 评论(0) 推荐(0) 编辑