摘要: Q:图画完了怎么裁剪画布? 按住ctrl,鼠标划到画布边缘,会发现可以自由拉伸画布; Q:导出pdf时候怎么把紧贴画布的灰色边框去掉 导出pdf—>选项—>取消“辅助功能文档结构标记”,即可; 阅读全文
posted @ 2024-11-04 21:28 正明小佐 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1. 基本概念 1.1 并发、进程、线程的基本概念与综述 1.1.1 并发 并发:表示两个或多个任务同时发生,比如一边唱歌一边弹琴;在计算机领域中,即一个程序同时执行多个独立的任务; 并行:以往计算机只有单核CPU的时候,某一时刻只能执行一个任务,实现多任务的方式是每秒钟进行多次“任务切换”,比如这 阅读全文
posted @ 2024-11-02 15:45 正明小佐 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 描述 命令 强制删除进程 pkill -9 [pid]/[pid name],如sudo pkill -9 code 阅读全文
posted @ 2024-10-31 15:50 正明小佐 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 从文件中读数据用ifstream,比如: #include <iostream> #include <fstream> int main(){ std::string file_name = "path/filename.txt"; std::ifstream i_f_stream(file_nam 阅读全文
posted @ 2024-10-30 22:27 正明小佐 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 描述 answer vscode在ctrl+shift+b选择cmake编译后怎么快速切回terminal运行一把? 只需要ctrl+`就行了 vscode怎么快速切换文件 ctrl+tab+上下键 阅读全文
posted @ 2024-10-30 22:05 正明小佐 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Q:vscode新建cmake项目ctrl左键无法索引头文件? A:生成c_cpp_properties.json文件 打开命令面板ctrl+shift+p,输入[c/c++:]edit configuration(UI)或[c/c++:]edit configuration(JSON)即可生成; 阅读全文
posted @ 2024-10-30 13:12 正明小佐 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.计算密集型 定义:计算密集型任务指主要依赖处理器进行大量计算的任务,这类任务的特点是需要大量的CPU时间来进行复杂的算法和数学运算。 特点:计算密集型任务通常涉及大量的数值计算、判断逻辑和数据处理,而输入/输出操作相对较少。 瓶颈:计算密集型任务的性能瓶颈通常在CPU的计算能力。 优化方法: 优 阅读全文
posted @ 2024-07-09 16:16 正明小佐 阅读(278) 评论(0) 推荐(0) 编辑
摘要: Given a sequence of K integers { N1​, N2​, ..., N​K }. A continuous subsequence is defined to be { Ni​, Ni+1​, ..., Nj​ } where 1≤i≤j≤K. The Maximum S 阅读全文
posted @ 2023-07-13 12:30 正明小佐 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat 阅读全文
posted @ 2023-07-11 15:48 正明小佐 阅读(5) 评论(0) 推荐(0) 编辑
摘要: A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child. Input Specification: Each inp 阅读全文
posted @ 2023-07-11 15:16 正明小佐 阅读(4) 评论(0) 推荐(0) 编辑