/** * Note: The returned array must be malloced, assume caller calls free(). */ int* decompressRLElist(int* nums, int numsSize, int* returnSize){ if ( ...
分类:
其他好文 时间:
2020-02-03 10:05:20
阅读次数:
86
powercat 也是一套基于 DNS 通信协议的工具。Powercat的dns的通信是基于dnscat设计的(其服务端就是dnscat)。在使用dnscat时需要进行下载和编译。 dnscat服务端安装: #git clone https://github.com/iagox86/dnscat2. ...
分类:
其他好文 时间:
2020-02-02 11:42:35
阅读次数:
91
1 """ 2 Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and ...
分类:
其他好文 时间:
2020-02-01 23:19:31
阅读次数:
69
1 """ 2 We are given a linked list with head as the first node. Let's number the nodes in the list: node_1, node_2, node_3, ... etc. 3 4 Each node may ...
分类:
其他好文 时间:
2020-02-01 23:17:32
阅读次数:
75
1. The collection of Linkun's [1]:1.1 He is a fraternity brotherWhen all is said and done, this is a good way to get oneself involved in a new society ...
分类:
其他好文 时间:
2020-02-01 21:36:22
阅读次数:
76
Backup the GPO to a second server is very important. Restore a GPO if necessary. Note: WMI filter and Links need to be re-configured after restoration ...
分类:
其他好文 时间:
2020-01-31 22:44:03
阅读次数:
85
数组 初始化规则 字符串 sizeof和strlen 字符串拼接 如果字符串过长,可以使用两个“”进行字符串拼接 结构体 NOTE 1. 如果结构标识符是结构名,则使用句点运算符; 2. 如果结构标识符是指向结构的指针,则使用箭头运算符。 共用体 enum 枚举 指针 使用new 分配内存 / 使用 ...
分类:
编程语言 时间:
2020-01-31 18:43:34
阅读次数:
87
demo05_逻辑运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 10 b = 20 if a and b : print("1 - 变 ...
分类:
其他好文 时间:
2020-01-31 14:37:16
阅读次数:
61
demo03_赋值运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 c = a + b print("1. ...
分类:
其他好文 时间:
2020-01-31 14:22:16
阅读次数:
72
Given a string S, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same. If possible, output ...
分类:
其他好文 时间:
2020-01-31 14:18:49
阅读次数:
60