《Programming from the Ground Up》学习第9天,p147-p180总结,总计34页。
一、技术总结
1.Physical memeory
p152, Physical memory refers to the actual RAM chips inside your computer and what they contain.
物理地址指的RAM,即我们…
题一 扩展欧几里得算法 解题思路 原链接:https://www.acwing.com/solution/content/1393/(下同)
代码实现
#include<iostream>using namespace std;void exgcd(int a, int b, int &x, int &y)
{if(b 0){x 1, y 0;return ;…