[网络编程]UNIX网络编程

第二部分 基本套接字编程 第3章 套接字编程简介 套接字地址结构 IPv4套接字地址结构(又称 网络套接字地址结构) 以 sockaddr_in命名,定义在

[源码]Linux 0.11核心代码与操作系统设计思想

Linux 0.11 源码 学习资料: https://github.com/sunym1993/flash-linux0.11-talk Linux 0.11源码讲解 及 相关学习内容 https://www.intel.com/content/www/us/en/developer/articles/technical/intel-sdm.html Intel手册 第一部分:进入内核前的苦力活 1.1 最开始的两行代码 上图中启动区的定义:只要硬

[刷题]LeetCode每日一题[2022.02]

[2.10]\560. Subarray Sum Equals K 传送门 分析:前缀和 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 class Solution { public: int subarraySum(vector<int>& nums, int k) { int n = nums.size(); vector<int> sum(n+1, 0); for (int i=0; i<n; i++) { sum[i+1] = sum[i] + nums[i]; } int ans = 0; unordered_map<int, int>

[刷题]企业真题|专项

字节跳动 ZJ1 附加题 存在n+1个房间,每个房间依次为房间1 2 3…i,每个房间都存在一个传送门,i房间的传送门可以把人传送到房间pi

[炼丹]炼丹爬坑&技巧

关于GPU(显存占用率,GPU利用率) 观察GPU利用率,显存占用率 工具:gpustat 1 2 3 pip install gpustat # 安装 watch --color -n1 gpustat -cpu # 监测 gpustat --force-color -cpu -i 1 # 颜色区分

[刷题]LeetCode每日一题[2022.01]

01.01[312. Burst Balloons] 传送门 You are given n balloons, indexed from 0 to n - 1. Each balloon is painted with a number on it represented by an array nums. You are asked to burst all the balloons. If you burst the ith balloon, you will get nums[i - 1] * nums[i] * nums[i + 1] coins. If i - 1 or i + 1 goes out of

[刷题]LeetCode

精选高频面试题 合并有序链表 反转链表 单例模式 简单工厂模式 快速排序 归并排序 实现一个堆排序 设计LRU缓存 重排链表 奇偶链表 写三个线程交替打印ABC Top