上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: word里设置好各级标题 -> 生成目录 ->转换成PDF时,见图 阅读全文
posted @ 2016-04-21 22:54 wangb021 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 阿里大概题目两个单元:1、单选。大部分数学逻辑题+小部分编程基础题 选择题目 strlen和sizeof的用法(几乎逢考必见),数据结构树的遍历, == 和equal的区别 , 排序的复杂度分析 编程题目 1、考察hadoop文件读写过程 2、编写一个转账接口,注意条件:余额<转账金额 、 转账次数 阅读全文
posted @ 2016-04-21 22:22 wangb021 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 简单来说 : 抽象方法 -> “是不是”,类的基本属性 ,子类实现其中的抽象方法; 接口 ->"有没有" ,类的额外功能,子类实现里面的全部方法;接口是公开的,里面不能有私有的方法或变量,是用于让别人使用的,而抽象类是可以有私有方法或私有变量的,另外,实现接口的一定要实现接口里定义的所有方法,为此, 阅读全文
posted @ 2016-04-20 13:58 wangb021 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Aqua Data Studio 做项目时发现的一款链接数据库的软件,简直是6啊!!!! 安装:http://blog.csdn.net/xingxiupaioxue/article/details/8968600 使用:http://blog.sina.com.cn/s/blog_703074da 阅读全文
posted @ 2016-04-19 16:57 wangb021 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return the inorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, return [1,3,2]. 树的中序遍历 package leetc 阅读全文
posted @ 2016-04-19 12:39 wangb021 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occurrenc 阅读全文
posted @ 2016-04-19 12:37 wangb021 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Bin Dec Hex 缩写/字符 解释 0000 0000 0 00 NUL(null) 空字符 0000 0001 1 01 SOH(start of headline) 标题开始 0000 0010 2 02 STX (start of text) 正文开始 0000 0011 3 03 ET 阅读全文
posted @ 2016-04-18 12:17 wangb021 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any positive intege 阅读全文
posted @ 2016-04-18 12:14 wangb021 阅读(161) 评论(0) 推荐(0) 编辑
摘要: You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time 阅读全文
posted @ 2016-04-18 12:09 wangb021 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Given an array of strings, group anagrams together. For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return: Note: 映射关系如下: 代码如下: packag 阅读全文
posted @ 2016-04-17 12:07 wangb021 阅读(196) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页