checksec warmup_csaw_2016 Arch: amd64-64-little RELRO: Partial RELRO Stack: No canary found NX: NX disabled PIE: No PIE (0x400000) RWX: Has RWX segmen ...
分类:
其他好文 时间:
2020-10-10 17:07:34
阅读次数:
20
#include <Windows.h> #include <iostream> #include <tchar.h> #ifdef UNICODE #define Cout std::wcout #else #define Cout std::cout #endif // UNICODE usin ...
For a binary tree T, we can define a flip operation as follows: choose any node, and swap the left and right child subtrees. A binary tree X is flip e ...
分类:
其他好文 时间:
2020-10-08 19:09:30
阅读次数:
24
c++中const修饰的变量,类似c中的#define,凡是用到这个变量的地方,不会回去读取内存,而是直接使用初次定义的值。 换句话说,在后面这个const修饰的变量就算被使用指针强行修改了(在内存上直接改)。 在后面使用这个变量时,由于不会回去读内存,所以使用的依然是初次定义的值,并非是被修改的内 ...
分类:
编程语言 时间:
2020-10-07 20:37:53
阅读次数:
21
noncopyable.h #ifndef __WD_NONCOPYABLE_H__ #define __WD_NONCOPYABLE_H__ namespace wd { class Noncopyable { protected: Noncopyable(){} ~Noncopyable(){} ...
分类:
编程语言 时间:
2020-10-06 20:12:15
阅读次数:
20
#include <iostream> #include <string> #define MAX 500 using namespace std; struct person { string name; int age; }; struct contact { person persons[MA ...
分类:
编程语言 时间:
2020-10-05 22:33:17
阅读次数:
48
函数:1:库函数-C语言自己提供给我们的strcpy:字符串拷贝,对应#include<string.h>的头文件包括里面的\n,也要被拷贝进去#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>intmain(){chararr[]={"你是猪"};chararr
分类:
其他好文 时间:
2020-10-05 21:44:51
阅读次数:
22
;(function(global,factory){ typeof exports 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define 'function' && define ...
分类:
其他好文 时间:
2020-09-24 22:08:52
阅读次数:
79
#include <windows.h> #define BUFFER(x,y) *(pBuffer + y*cxBuffer + x) LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int min(int a, int b) { ret ...
分类:
其他好文 时间:
2020-09-24 21:56:40
阅读次数:
47
模板特例化也叫模板偏特化,乍听起可能有点摸不着头脑,实际上字如其名,他就是模板的一种特例存在;比如在一个类中,模板参数接受指针类型的时候需要特殊处理,则我们可以将指针版本的那一份专门抽调出来;话不多说直接上代码 //头文件 #ifndef __Template_Hpp_ #define __Temp ...
分类:
编程语言 时间:
2020-09-23 23:51:32
阅读次数:
33