#include<stdlib.h> #include<stdio.h> void Move(char now, int a, char next) { printf("%d:%c->%c\n", a, now, next); } void Hanoi(int n, char x, char y, ...
分类:
其他好文 时间:
2021-03-30 13:06:36
阅读次数:
0
On a campus represented as a 2D grid, there are N workers and M bikes, with N <= M. Each worker and bike is a 2D coordinate on this grid. Our goal is ...
分类:
其他好文 时间:
2021-03-30 12:51:26
阅读次数:
0
今天早点干活 仍然是常规的Windows可执行程序逆向,拖入exeinfope之后发现没壳直接丢进IDA,找到main函数进入 int __cdecl main(int argc, const char **argv, const char **envp) { int v3; // edx int ...
分类:
其他好文 时间:
2021-03-29 12:28:35
阅读次数:
0
结构体中的位结构: 1 #include <stdio.h> 2 3 typedef struct _lar{ 4 unsigned char ucA:1; 5 unsigned char ucB:1; 6 unsigned char ucC:2; 7 unsigned char ucD:4; 8 ...
分类:
其他好文 时间:
2021-03-29 12:24:59
阅读次数:
0
#include <stdio.h> int main(){ int a = 100; char str[20] = "hello world!"; char *zza = "hello world!"; printf("%#X,%#X,%#X\n", *zza, &zza,zza); printf ...
分类:
编程语言 时间:
2021-03-29 12:14:44
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content ...
分类:
其他好文 时间:
2021-03-29 12:12:11
阅读次数:
0
生成 Application Container,以及 Application PDB 的作成方法:Oracle 的 CDB 中,本来就是可以有很多的 PDB,但是 Oracle 引入了一种特殊的 PDB,这种 PDB 被声明为:"AS APPLICATION CONTAINER"。这以后,我们可以 ...
分类:
移动开发 时间:
2021-03-29 12:05:12
阅读次数:
0
ffplay 可以使用ffplay播放《音频录制02_编程》中录制好的PCM文件,测试一下是否录制成功。 播放PCM需要指定相关参数: ar:采样率 ac:声道数 f:采样格式 s16le:PCM signed 16-bit little-endian 更多PCM的采样格式可以使用命令查看 Wind ...
分类:
其他好文 时间:
2021-03-29 11:37:44
阅读次数:
0
function Checkexeisrunning(ename:string):Boolean; var hwd:hwnd; scr:array [0..254] of Char; begin Result:=False; hwd:=GetWindow(Application.Handle,GW_ ...
分类:
其他好文 时间:
2021-03-26 15:28:08
阅读次数:
0
FUNCTION fmname. DATA:g_char(30) TYPE c. g_char = ''. g_char = abs( i_amount ). CONDENSE g_char. TYPES: cur6 TYPE p DECIMALS 6, cur2 TYPE p DECIMALS 2 ...
分类:
其他好文 时间:
2021-03-26 15:22:57
阅读次数:
0