上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页
摘要: 参考链接: https://wenku.baidu.com/view/606da2a1240c844769eaee7e.html?qq-pf-to=pcqq.group https://blog.csdn.net/fireflychh/article/details/82352710 先验知识: ( 阅读全文
posted @ 2018-11-19 22:44 outthinker 阅读(5592) 评论(1) 推荐(1) 编辑
摘要: 题目描述: 代码如下: 阅读全文
posted @ 2018-11-14 22:12 outthinker 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 题目描述: 析:本题如果采用暴力遍历方法的话,最大时间复杂度为O((m + n)* (l + n)) 其实这道题可以建模成一个相遇问题,如上图所示:A和B同时出发,速度均为1,求他们的相遇点p,很明显,当行走路程达到(m + n + l)时,两者路程相同,相遇,代码如下: 阅读全文
posted @ 2018-11-14 10:29 outthinker 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 这里说一下ROI Pool和ROI Align的区别: 一、ROI Pool层: 参考faster rcnn中的ROI Pool层,功能是将不同size的ROI区域映射到固定大小的feature map上,具体可实现可参考:https://www.cnblogs.com/zf-blog/p/7337 阅读全文
posted @ 2018-11-09 11:24 outthinker 阅读(4754) 评论(0) 推荐(1) 编辑
摘要: 题目链接:https://www.nowcoder.com/practice/8fecd3f8ba334add803bf2a06af1b993?tpId=13&tqId=11185&tPage=2&rp=2&ru=%2Fta%2Fcoding-interviews&qru=%2Fta%2Fcodin 阅读全文
posted @ 2018-11-07 18:34 outthinker 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163?tpId=13&tqId=11181&rp=2&ru=/ta/coding-interviews&qru=/ta/coding-interviews/que 阅读全文
posted @ 2018-11-05 21:23 outthinker 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 链接:https://www.nowcoder.com/practice/947f6eb80d944a84850b0538bf0ec3a5?tpId=13&tqId=11179&rp=2&ru=/ta/coding-interviews&qru=/ta/coding-interviews/quest 阅读全文
posted @ 2018-10-30 22:35 outthinker 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://www.nowcoder.com/practice/a861533d45854474ac791d90e447bafd?tpId=13&tqId=11176&tPage=2&rp=2&ru=/ta/coding-interviews&qru=/ta/coding-interv 阅读全文
posted @ 2018-10-30 20:47 outthinker 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://www.cnblogs.com/skywang12345/p/3576328.html 定义:二叉查找树(Binary Search Tree),又被称为二叉搜索树。设x为二叉查找树中的一个结点,x节点包含关键字key,节点x的key值记为key[x]。如果y是x的左子树中 阅读全文
posted @ 2018-10-30 10:45 outthinker 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://blog.csdn.net/nepenthe_csdn/article/details/52348194 这里说一下二叉树的子树和子结构的概念: 子树的意思是包含了一个结点,就得包含这个结点下的所有节点,一棵大小为n的二叉树有n个子树,就是分别以每个结点为根的子树。子结构的 阅读全文
posted @ 2018-10-26 16:03 outthinker 阅读(2634) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页