摘要: 大家都知道,数据在计算机里中存储是以二进制的形式存储的。 有一天,小明学了C语言之后,他想知道一个类型为unsigned int 类型的数字,存储在计算机中的二进制串是什么样子的。 你能帮帮小明吗?并且,小明不想要二进制串中前面的没有意义的0串,即要去掉前导0。 第一行,一个数字T(T<=1000) 阅读全文
posted @ 2017-02-18 21:42 琴影 阅读(392) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find the leftmost value in the last row of the tree. Example 1: Example 2: Note: You may assume the tree (i.e., the given root no 阅读全文
posted @ 2017-02-18 16:37 琴影 阅读(713) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest l 阅读全文
posted @ 2017-02-18 16:26 琴影 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Find the sum of all left leaves in a given binary tree. Example: 也可用bfs 网上大神的dfs:深度优先遍历,将所有结点从根结点开始遍历一遍,设立isLeft的值,当当前结点是叶子节点并且也是左边,那就result加上它的值 阅读全文
posted @ 2017-02-18 15:51 琴影 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For 阅读全文
posted @ 2017-02-18 13:38 琴影 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 求次数 时间限制:1000 ms | 内存限制:65535 KB 难度:2 求次数 时间限制:1000 ms | 内存限制:65535 KB 难度:2 题意很简单,给一个数n 以及一个字符串str,区间【i,i+n-1】 为一个新的字符串,i 属于【0,strlen(str)】如果新的字符串出现过a 阅读全文
posted @ 2017-02-18 10:18 琴影 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Registration system 时间限制:1000 ms | 内存限制:65535 KB 难度:2 Registration system 时间限制:1000 ms | 内存限制:65535 KB 难度:2 A new e-mail service "Berlandesk" is going 阅读全文
posted @ 2017-02-18 09:43 琴影 阅读(174) 评论(0) 推荐(0) 编辑