摘要: 依照csdiy和名校公开课评价网的计算机自学指南 其中csdiy我自己在我的linux系统中fork了一下 这里就列举目前为止所有自学课程的网站cs50和cs61a以及MIT18.01已经上完了就不加了 cs61b 课程主页:(https://sp18.datastructur.es/) intro 阅读全文
posted @ 2024-01-16 11:25 viewoverlook 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 有时候在设计数据结构的时候,可能会遇到两个类需要相互引用的情形。比如类 A 有类型为 B 的成员,而类 B 又有类型为 A 的成员。 那么这种情形下,两个类的设计上需要注意什么呢? 同一文件 尝试方案 将 A 和 B 的定义都放在一个文件中,例如: #include <iostream> class 阅读全文
posted @ 2024-05-23 23:09 viewoverlook 阅读(392) 评论(0) 推荐(0) 编辑
摘要: #ifndef 它是 if not define 的简写,是宏定义的一种,实际上确切的说,这应该是预处理功能三种(宏定义、文件包含、条件编译)中的一种 条件编译。 在 c 语言中,对同一个变量或者函数进行多次声明是不会报错的。所以如果 h 文件里只是进行了声明工作,即使不使用# ifndef 宏定义 阅读全文
posted @ 2024-05-13 10:16 viewoverlook 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 在 Ubuntu 中解压缩 zip 文件时出现中文乱码问题,这通常是因为 zip 文件中的文件名采用了非 UTF-8 编码格式导致的。在这种情况下,解压缩程序无法正确地识别并显示中文字符。 要解决这个问题,可以通过在终端中使用 unzip 命令来解压缩 zip 文件,并使用参数 "-O CP936" 阅读全文
posted @ 2024-05-10 20:54 viewoverlook 阅读(370) 评论(0) 推荐(0) 编辑
摘要: Lecture4 What are streams? “stream: an abstraction for input/output. Streams convert between dataand the stringrepresentation ofdata.” 流: 对输入输出的一种抽象。留 阅读全文
posted @ 2024-05-05 23:59 viewoverlook 阅读(4) 评论(0) 推荐(0) 编辑
摘要: lecture8 Template Classes + Const Correctness Classes Recap “Template Class: A class that is parametrized over some number of types. A class that is c 阅读全文
posted @ 2024-05-05 23:57 viewoverlook 阅读(5) 评论(0) 推荐(0) 编辑
摘要: lecture7 class 类简介 “Class: A programmerdefined custom type. An abstraction of an object or data type.” 类:由程序员定义的特殊类型。是对一种对象或者数据类型的抽象 但是这个问题已经有struct 了 阅读全文
posted @ 2024-05-05 23:57 viewoverlook 阅读(3) 评论(0) 推荐(0) 编辑
摘要: cf red and blue 题目链接 题目大意: 思路: 将数组先按颜色,再按大小升序排序所得形式类似于 其中根据贪心只要能出现1~n的序列即可 在颜色B下,\(a[i] >= i + 1\) 因\(a[i]\)只能取不大于自身的数 在颜色R下,\(a[i] <= i + 1\) 因\(a[i] 阅读全文
posted @ 2024-04-27 21:31 viewoverlook 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 适用于我的win11+Ubuntu22.04 双系统 安装依赖包 sudo apt install wireplumber libspa-0.2-bluetooth wireplumber-doc 重启 wireplumber systemctl --user restart wireplumber 阅读全文
posted @ 2024-03-25 19:52 viewoverlook 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 大模型及InternLM介绍 什么是大模型? 人工智能领域中参数数量巨大,拥有庞大计算能力和参数规模的模型。 特点: 大量数据进行训练 数十亿甚至千亿参数 在各种任务重展现出惊人的性能 SSH连接开发机 本地机器上打开终端 生成SSH密钥对 ssh-keygen 在InternStudio配置公钥: 阅读全文
posted @ 2024-01-13 23:14 viewoverlook 阅读(10) 评论(0) 推荐(0) 编辑