03 2020 档案
摘要:基础知识: ''' @Time : 2020/3/29 14:30 @Author : laolao @FileName: 2.py ''' import threading def thread_job(): print("This is an added Thread,number is %s"
阅读全文
摘要:chrome缩小25%后,背景图片不改变 我的背景图片是设置在body里面,所以CSS添加: body{ background:url("image/12.jpg") fixed; background-size: 100%; min-height: 1000px; background-size:
阅读全文
摘要:石子合并问题--直线版 HRBUST - 1818 注释的部分是平行四边形优化,下面是分析的草稿 #include<iostream> #include<cstdio> #include<cstring> using namespace std; const int INF = 0x3f3f3f3f
阅读全文
摘要:第三章: 🌺 MWM_DESTROY:未定义标识符 书本印刷错误,应为: case WM_PAINT: hdc = BeginPaint(hwnd, &ps); GetClientRect(hwnd, &rect); DrawText(hdc, TEXT("Hello,Windows 98!"),
阅读全文
摘要:题目: 设CPU共有16根地址线,8根数据线,并用(低电平有效)作访存控制信号,作读写命令信号(高电平为读,低电平为写)。现有下列存储芯片:ROM(2K×8位,4K×4位,8K×8位),RAM(1K×4位,2K×8位,4K×8位),及74138译码器和其他门电路(门电路自定)。试从上述规格中选用合适
阅读全文
摘要:A - 今年暑假不AC #include<iostream> #include<string.h> #include<algorithm> #include<map> #include<stdio.h> #define MAXN 3000 using namespace std; struct no
阅读全文
摘要:A - Max Sum Plus Plus[排列组合] 这个真的很难搞,排列组合也太难了 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const
阅读全文
摘要:结论: 第一个节区头的RVA = Size of Optional Header+IMAGE_OPTIONAL_HEADER的RVA 检验: Size of Optional Header = 0xE0 IMAGE_OPTIONAL_HEADER的RVA = 0xF8 0xE0 + 0xF8 = 0
阅读全文
摘要:ReadMe: 工具:PEview,hexWorkshop,chrome.exe 删除.reloc节区头 范围:0x308 - 0x32c,用0x00填充 删除.reloc节区 从0xcd800开始到结束,delete掉 修改IMAGE_FILE_HEADER 删掉reloc后,section要减一
阅读全文
摘要:A - Coin Change[多重背包] #include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> const int MONEY= 251; const int COIN = 101; using na
阅读全文
摘要:安装教程:Ubuntu-安装SQL Server 出现错误“sqlcmd:未找到命令”的解决方案:https://sqlserveronlinuxbackup.com/sqlcmd-command-not-found-ubuntu/ 使用教程:SQL Server的数据库创建、修改、查询、删除
阅读全文