reverse-200 工具:procmon、immunity dbg、idapro 首先通过procmon观察ch2.exe发现ch2.exe需要读取flag.txt,可以分析出ch2.exe是要读取flag.txt内容,加密后写到flag.crpyt目录下创建一个flag.txt,写入aaaaa...
分类:
其他好文 时间:
2015-03-11 21:20:17
阅读次数:
191
标题:Reverse Words in a String通过率: 14.8% 难度: 中等Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return ".....
分类:
其他好文 时间:
2015-03-11 21:18:28
阅读次数:
129
void reverse(Node*& head){ if (!head) return; Node *p1, *p2, *p3; p1 = head; p2 = p1->next; p1->next = NULL; while (p2) { ...
分类:
其他好文 时间:
2015-03-11 19:00:53
阅读次数:
111
javascript有许多数组方法,今天整理了一下:var a=[1,2,3];a.join();//将数组中所有元素都转化为字符串并连接在一起,参数作为分隔符。a.reverse();//将数组中的元素点到顺序,返回逆序数组。a.sort();//将数组中的元素排序并返回排序后的数组。a.conc...
分类:
编程语言 时间:
2015-03-11 16:56:32
阅读次数:
121
问题描述:
Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as
0...
分类:
其他好文 时间:
2015-03-11 14:47:57
阅读次数:
175
Reverse Integer问题:Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321click to show spoilers.Have you thought about...
分类:
其他好文 时间:
2015-03-11 12:26:31
阅读次数:
106
Reverse a Singly LinkedList * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) {...
分类:
其他好文 时间:
2015-03-11 07:04:04
阅读次数:
142
题目大意:维护一个序列,支持6种操作:1、ADD x y D 从第x个数到第y个数都增加D2、REVERSE x y 翻转第x个数到第y个数3、REVOLVE x y T 从x到y,向右循环移动T次4、INSERT x P 插入P到第x个数后面5、DELETE x 删除第x个数6、MIN x y 查...
分类:
其他好文 时间:
2015-03-10 22:56:49
阅读次数:
190
Reverse bits of a given 32 bits unsigned integer.For example, given input 43261596 (represented in binary as00000010100101000001111010011100), return ...
分类:
其他好文 时间:
2015-03-10 13:51:19
阅读次数:
111
Reverse bits of a given 32 bits unsigned integer.
For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), return 964176192 (represented in binary as 001...
分类:
其他好文 时间:
2015-03-10 12:04:14
阅读次数:
101