上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页
摘要: Question Given n non negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in 阅读全文
posted @ 2017-10-31 10:57 清水汪汪 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 论文地址: "https://arxiv.org/abs/1512.06473" 源码地址: "https://github.com/jiaxiang wu/quantized cnn" 1. 主要思想 这篇文章的主要思想其实就是权值共享,也是用聚类的方法(k means)做共享,只不过不是单个权值 阅读全文
posted @ 2017-10-25 17:54 清水汪汪 阅读(2826) 评论(0) 推荐(0) 编辑
摘要: 论文地址:[MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications ](https://arxiv.org/pdf/1704.04861.pdf) MobileNet由Google提出的一种 阅读全文
posted @ 2017-10-23 20:05 清水汪汪 阅读(796) 评论(0) 推荐(0) 编辑
摘要: 《Densely Connected Convolutional Networks》阅读笔记 代码地址:https://github.com/liuzhuang13/DenseNet 首先看一张图: 稠密连接:每层以之前层的输出为输入,对于有L层的传统网络,一共有L个连接,对于DenseNet,则有 阅读全文
posted @ 2017-10-22 22:30 清水汪汪 阅读(9514) 评论(0) 推荐(0) 编辑
摘要: 论文地址: "Deep Residual Learning for Image Recognition" ResNet——MSRA何凯明团队的Residual Networks,在2015年ImageNet上大放异彩,在ImageNet的classification、detection、locali 阅读全文
posted @ 2017-10-22 20:18 清水汪汪 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: Question Given a non empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time 阅读全文
posted @ 2017-10-20 11:05 清水汪汪 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Question Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three 阅读全文
posted @ 2017-10-20 09:48 清水汪汪 阅读(116) 评论(0) 推荐(0) 编辑
摘要: Question Sort a linked list in O(n log n) time using constant space complexity. Solution 分析,时间复杂度要求为nlogn,因此得考虑归并排序,但是空间必须为常量,因此得注意指针的操作。 Code 阅读全文
posted @ 2017-10-19 22:30 清水汪汪 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 为了依次求个位,十位,百位中1的个数,我们可以把这个数字分为三部分,高位数字,当前位数字,低位数字。 如果当前位为0,那么此位为1的数目与高位数字有关 如果当前位为1,那么此位为1的数目与高位和地位都有关 如果当前位其他,那么此位为1的数目与高位数字有关 具体规律看源代码 C++ include u 阅读全文
posted @ 2017-10-14 09:41 清水汪汪 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 这个和一个数组中,存在某个数的数目是超过总数的一半的,找出这个数的原理是一样的。 做法就是统计三个数的数目,相同就加1,和三个数都不同,三个数都减1,因为它们的数目是超过1/4的,那么它们三个最后肯定是留下来的。 算法时间复杂度O(N) C++ include include using names 阅读全文
posted @ 2017-10-13 22:24 清水汪汪 阅读(612) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 26 下一页