上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 53 下一页

2018年12月27日

摘要: sdm re 1. CSDN_newbee; 2. SDM_pdf; 3. github; 4. author_homepage; 5. github-patrikhuber; 6. materials; 7. matlab_code; 8. Derive; 9. 106points; end 阅读全文
posted @ 2018-12-27 10:30 鹅要长大 阅读(726) 评论(0) 推荐(0) 编辑

2018年12月26日

摘要: re: 1. 机器学习之特征归一化(normalization); 2. 详解特征归一化; 3. zhihu; 4. 最大最小标准化与Z-score标准化; End 阅读全文
posted @ 2018-12-26 16:05 鹅要长大 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 参考 1. 图像不变性特征; 2. matlab实现; 3. HU矩和Zernike矩; 完 阅读全文
posted @ 2018-12-26 13:29 鹅要长大 阅读(438) 评论(0) 推荐(0) 编辑

2018年12月25日

摘要: ML DL 参考 1.CSDN大神; 完 阅读全文
posted @ 2018-12-25 17:46 鹅要长大 阅读(506) 评论(0) 推荐(0) 编辑
摘要: error 阅读全文
posted @ 2018-12-25 16:42 鹅要长大 阅读(2922) 评论(0) 推荐(0) 编辑

2018年12月24日

摘要: path 文件 Macros.h 即表示系统Eigen版本是3.2.92; 参考 1.CSDN博客; 完 阅读全文
posted @ 2018-12-24 09:23 鹅要长大 阅读(4511) 评论(0) 推荐(1) 编辑

2018年12月21日

摘要: 前言 本文主要记录一些重要的计算机视觉会议和团队。 会议 1. CVPR ECCV ICCV FG 团队 1. https://ibug.doc.ic.ac.uk/resources/facial-point-annotations/ 2. 阅读全文
posted @ 2018-12-21 17:09 鹅要长大 阅读(222) 评论(0) 推荐(0) 编辑

2018年12月14日

摘要: problem 219. Contains Duplicate II solution1 class Solution { public: bool containsNearbyDuplicate(vector<int>& nums, int k) { for(int i=0; i<nums.siz 阅读全文
posted @ 2018-12-14 17:01 鹅要长大 阅读(113) 评论(0) 推荐(0) 编辑
摘要: problem 217. Contains Duplicate solution1:暴力破解 class Solution { public: bool containsDuplicate(vector<int>& nums) { for(int i=0; i<nums.size(); i++) { 阅读全文
posted @ 2018-12-14 11:07 鹅要长大 阅读(126) 评论(0) 推荐(0) 编辑
摘要: problem 206. Reverse Linked List code Iteration /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(i 阅读全文
posted @ 2018-12-14 10:33 鹅要长大 阅读(140) 评论(0) 推荐(0) 编辑

2018年12月13日

摘要: http://www.cnblogs.com/life2refuel/p/5396538.html 阅读全文
posted @ 2018-12-13 16:55 鹅要长大 阅读(120) 评论(0) 推荐(0) 编辑

2018年12月11日

摘要: problem 205-Isomorphic Strings code 需要注意的 参考 1. Leetcode_Isomorphic Strings; 完 阅读全文
posted @ 2018-12-11 20:19 鹅要长大 阅读(146) 评论(0) 推荐(0) 编辑

2018年12月10日

摘要: problem 204. Count Primes 参考 1. CSDN大神; 2. CSDN; 3. Leetcode_CountPrimes; 完 2. CSDN; 3. Leetcode_CountPrimes; 完 阅读全文
posted @ 2018-12-10 22:45 鹅要长大 阅读(145) 评论(0) 推荐(0) 编辑

2018年12月9日

摘要: 203. Remove Linked List Elements code /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : va 阅读全文
posted @ 2018-12-09 19:59 鹅要长大 阅读(138) 评论(0) 推荐(0) 编辑
摘要: problem 202. Happy Number code 1. Leetcode_Happy Number; 2. GrandYang_cnblogs; 阅读全文
posted @ 2018-12-09 19:43 鹅要长大 阅读(152) 评论(0) 推荐(0) 编辑
摘要: problem 198. House Robber solution1: code solution2: code class Solution { public: int rob(vector<int>& nums) { if(nums.size()==0) return 0; if(nums.s 阅读全文
posted @ 2018-12-09 13:42 鹅要长大 阅读(151) 评论(0) 推荐(0) 编辑
摘要: problem 191. Number of 1 Bits code solution2 依据二进制数据的性质,使用模板进行实现。 1. Leetcode_Number of 1 Bits; 阅读全文
posted @ 2018-12-09 13:30 鹅要长大 阅读(109) 评论(0) 推荐(0) 编辑

2018年12月8日

摘要: problem 190. Reverse Bits solution1: class Solution { public: uint32_t reverseBits(uint32_t n) { uint32_t res = 0; for(int i=0; i<32; i++) { res = res 阅读全文
posted @ 2018-12-08 19:58 鹅要长大 阅读(125) 评论(0) 推荐(0) 编辑
摘要: problem 189. Rotate Array solution1: 暴力破解法(Time Limit Exceeded) class Solution { public: void rotate(vector<int>& nums, int k) { int tmp, pre; for(int 阅读全文
posted @ 2018-12-08 19:56 鹅要长大 阅读(102) 评论(0) 推荐(0) 编辑
摘要: problem 172. Factorial Trailing Zeroes 172. Factorial Trailing Zeroes code class Solution { public: int trailingZeroes(int n) { int ans = 0; while(n) 阅读全文
posted @ 2018-12-08 19:03 鹅要长大 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 53 下一页

导航