上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 46 下一页
  2017年7月18日
摘要: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the 阅读全文
posted @ 2017-07-18 13:55 Beserious 阅读(115) 评论(0) 推荐(0) 编辑
  2017年7月17日
摘要: Write a function to find the longest common prefix string amongst an array of strings. 找出,给出的一堆字符串的公共前缀。两个两个比较 阅读全文
posted @ 2017-07-17 20:09 Beserious 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 给出罗马数字 输出对应的阿拉伯数字。思路来自29的罗马数字 观看罗马数字构造规则(h 阅读全文
posted @ 2017-07-17 19:36 Beserious 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Determine whether an integer is a palindrome. Do this without extra space. 就是判断 反转后的整数和反转之前的整数是否相等 阅读全文
posted @ 2017-07-17 16:55 Beserious 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Note:The input is assumed to be a 32-bit signed integer. Yo 阅读全文
posted @ 2017-07-17 14:45 Beserious 阅读(103) 评论(0) 推荐(0) 编辑
  2017年7月13日
摘要: (1)SVM/LR/GBDT/EM的原理以及公式推导 (2)RF和GDBT的区别;GDBT,XGBOOST的区别,从底层原理去分析 (3)决策树处理连续值方法 (4)解释一下原问题和对偶问题 (5)什么是过拟合,以及解决方案 (6)什么是正则项,L1范式,L2范式区别是什么,各自用在什么地方? (7 阅读全文
posted @ 2017-07-13 22:38 Beserious 阅读(303) 评论(0) 推荐(0) 编辑
  2017年7月10日
摘要: github地址https://github.com/ngunauj/facedetection 熟悉ros环境。ubuntu16.04 + ros kinetic版本。使用笔记本自带摄像头,完成人脸的实时检测。代码可能会更改,具体以github上的代码为主。 camera_driver代码 在人脸 阅读全文
posted @ 2017-07-10 15:48 Beserious 阅读(1852) 评论(2) 推荐(0) 编辑
  2017年7月4日
摘要: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2017-07-04 22:21 Beserious 阅读(133) 评论(0) 推荐(0) 编辑
  2017年4月17日
摘要: 实习阶段一直用虚拟机,用虚拟机踩了不少坑,所以打算装双系统。 笔记本是联想T460,直接压缩卷 50G 然后分配/ 27G /home 18G 剩下的给 swap. 都用逻辑分区。 接下来安装 vim,谷歌拼音(可参考http://blog.csdn.net/striker_v/article/de 阅读全文
posted @ 2017-04-17 16:08 Beserious 阅读(304) 评论(0) 推荐(0) 编辑
  2017年3月25日
摘要: 一维数组:int *a=new int[10]; delete []a; 二维数组: int (*a)[10]=new int[5][10]; delete []a; int **a=new *int[5]; for(int i=0;i<5;i++){ a[i]=new int[10]; } vec 阅读全文
posted @ 2017-03-25 23:38 Beserious 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 46 下一页