摘要: 基于YOLOv5的Logo检测神经网络 Use deep learning technology to detect whether there is a brand logo in the image and locate its location. The Logo detection mode 阅读全文
posted @ 2022-08-29 23:34 奋斗中的菲比 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 什么是队列(Queue)? 队列(queue)是一种采用先进先出(FIFO,first in first out)策略的抽象数据结构。比如生活中排队,总是按照先来的先服务,后来的后服务。队列在数据结构中举足轻重,其在算法中应用广泛,最常用的就是在宽度优先搜索(BFS)中,记录待扩展的节点。 队列内部 阅读全文
posted @ 2022-08-29 23:11 奋斗中的菲比 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 为什么要使用二分查找? 普通的查找找比较多:the general find need more time! 二分搜索的有点就是时间复杂度是O(logn)的,而普通的查找时间复杂度是O(N)的。但他们所消耗的空间是一样的。同时普通查找不需要数组有序,直接for循环即可,但是二分查找需要数组有一定的顺 阅读全文
posted @ 2022-08-29 17:51 奋斗中的菲比 阅读(17) 评论(0) 推荐(0) 编辑