摘要: 用来记录日常遇到的可能的Java面试题,持续添加...... 1、MySQL数据库引擎介绍、区别、创建和性能测试的深入分析 MySQL数据库引擎取决于MySQL在安装的时候是如何被编译的。要添加一个新的引擎,就必须重新编译MYSQL。在缺省情况下,MYSQL支持三个引擎:ISAM、MYISAM和HE 阅读全文
posted @ 2017-11-10 23:56 荒野第一快递员 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 题目: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm t 阅读全文
posted @ 2017-11-10 11:10 荒野第一快递员 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 题目: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1 阅读全文
posted @ 2017-11-10 10:22 荒野第一快递员 阅读(175) 评论(0) 推荐(0) 编辑