上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页
摘要: 题目: A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. A maximal clique is a cl 阅读全文
posted @ 2023-09-04 15:28 Yohoc 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 题目: The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BS 阅读全文
posted @ 2023-09-03 22:29 Yohoc 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 硬链接就是在目录下创建一个条目,记录着文件名与 inode 编号,这个 inode 就是源文件的 inode。删除任意一个条目,文件还是存在,只要引用数量不为 0。但是硬链接有限制,它不能跨越文件系统,也不能对目录进行链接。 软链接相当于重新创建⼀个⽂件,这个⽂件有独⽴的 inode,但是这个⽂件的 阅读全文
posted @ 2023-09-02 16:32 Yohoc 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1、首先在cityscapes数据集官网注册登录 2、选择需要下载的数据集,并执行如下命令即可 wget --keep-session-cookies --save-cookies=cookies.txt --post-data 'username=数据集网站中自己的用户名&password=自己的 阅读全文
posted @ 2023-08-31 16:05 Yohoc 阅读(690) 评论(0) 推荐(0) 编辑
摘要: Python常用的依赖库安装方式是使用pip来安装,比如pip install xxx ;但有时pip的安装速度慢、或需要安装指定版本的依赖库,同时pip又不支持了,这时可以先把依赖库(安装包)源码方式下载到本地,再进行安装。 一、下载依赖库或安装包的源码通常在Github上下载 git clone 阅读全文
posted @ 2023-08-31 13:15 Yohoc 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 题目: In July 2004, Google posted on a giant billboard along Highway 101 in Silicon Valley (shown in the picture below) for recruitment. The content is 阅读全文
posted @ 2023-08-26 11:04 Yohoc 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 题目 A proper vertex coloring is a labeling of the graph's vertices with colors such that no two vertices sharing the same edge have the same color. A c 阅读全文
posted @ 2023-08-25 22:43 Yohoc 阅读(3) 评论(0) 推荐(0) 编辑
摘要: In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the 阅读全文
posted @ 2023-08-24 21:06 Yohoc 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 一、如何有效阅读论文? 1、整理相关领域资源 2、略读收集的文章,从中快速挑出重点文章来仔细阅读(阅读5-20篇文章可以对一个领域有一个basic understanding,阅读50-100篇文章,可以对一个领域有good understanding) 二、如何阅读一篇论文? 1.首先阅读标题、摘 阅读全文
posted @ 2023-07-24 22:21 Yohoc 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 题目: 给定一个二叉树的根节点 root ,和一个整数 targetSum ,求该二叉树里节点值之和等于 targetSum 的 路径 的数目。 路径 不需要从根节点开始,也不需要在叶子节点结束,但是路径方向必须是向下的(只能从父节点到子节点)。 示例 1: 输入:root = [10,5,-3,3 阅读全文
posted @ 2023-07-20 16:49 Yohoc 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 22 下一页