摘要: Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below. Note that 1 does not map to any letters. 阅读全文
posted @ 2019-04-21 12:05 yjxyy 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. 阅读全文
posted @ 2019-04-21 12:02 yjxyy 阅读(123) 评论(0) 推荐(0) 编辑
摘要: the container contains the most water. 阅读全文
posted @ 2019-04-21 11:58 yjxyy 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 输入一颗二叉树的跟节点和一个整数,打印出二叉树中结点值的和为输入整数的所有路径。路径定义为从树的根结点开始往下一直到叶结点所经过的结点形成一条路径。(注意: 在返回值的list中,数组长度大的数组靠前) 阅读全文
posted @ 2019-04-21 11:36 yjxyy 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历的结果。如果是则输出Yes,否则输出No。假设输入的数组的任意两个数字都互不相同。 阅读全文
posted @ 2019-04-21 11:31 yjxyy 阅读(267) 评论(0) 推荐(0) 编辑