buddy memory allocation相关整理

wiki上的定义: The buddy memory allocation technique is a memory allocation algorithm that divides memory into partitions to try to satisfy a memory request as…

2020-05-29 · 4 分钟

python根据excel内容生成文件夹

工作需要根据excel数据信息,生成对应的文件夹,用python写了一个脚本处理了一下。 样例中表格内容也进行了调整。 - 环境: - windows10 - python3.7 + openpyxl - 目标: 以list.xlsx数据为准,抽取指定sheet页中的指定字段信息,生成目录, 并在目录中创建固定的子目录…

2020-05-01 · 2 分钟

Timers and time management in the Linux kernel. Part 6

Timers and time management in the Linux kernel. Part - 这篇文章 Timers and time management in the Linux kernel. Part 6

2020-04-27 · 11 分钟

LeetCode –Binary Tree Preorder Traversal

Given a binary tree, return the _inorder_ traversal of its nodes' values. Example: Input: Output: Follow up: Recursive solution is trivial, could you do it…

2020-04-16 · 1 分钟

通过inode删除特殊字符文件

对于正常使用rm无法删除的文件可以通过查找inode进行删除 or - 直接删除 - 交互式

2020-04-16 · 1 分钟

Linux进程内存布局及映射信息

处理器在运行程序时,需要存储器来存放程序和程序使用的数据, 现代操作系统提供了存储器的抽象:虚拟存储器, 使得应用程序来说不用过多的考虑物理存储使用,简化了内存管理

2020-04-12 · 17 分钟

python汇总excel数据

工作需要汇总整理相关excel数据信息,并按照规定格式进行反馈,用python写了一个脚本处理了一下。 样例中表格内容也进行了调整。 - 环境: - windows10 - python3.7 + openpyxl - 目标: 以data1数据为准,通过查找data2补全相关信息, 将数据填入要求的result文件中。…

2020-01-31 · 2 分钟

linux-sides-Timers and time management in the Linux kernel. Part 5.

这篇文章 Timers and time management in the Linux kernel. Part 5

2020-01-19 · 14 分钟

LeetCode – Keys and Rooms

There are N rooms and you start in room 0. Each room has a distinct number in 0, 1, 2, ..., N-1, and each room may have some keys to access the next room.…

2020-01-14 · 2 分钟

内存管理 - 页面大小

内存(RAM)是计算机一种重要资源, 随着应用越来越复杂,不管存储器有多大,程序都可以把他填满,这就迫使人们不断寻找解决方案去管理它. 内存管理经历的几个阶段; - 无存储抽象阶段 (No Memory abstraction) - 地址空间 (Address Spaces) - 虚拟内存 (Virtual…

2020-01-10 · 4 分钟