摘要: Crackme3 破解教程 1、先用PEiD对 Crackme3进行 壳测试 点击File右边的按钮,选中Crackme3 结果如下图所示: 即 无壳。 试运行软件 点击 Register now! 结果如下: 用Ollydbg开始破解 打开 点击File->Open,找到Crackme3 打开 右... 阅读全文
posted @ 2015-01-19 16:56 小爷 阅读(1049) 评论(1) 推荐(0) 编辑
摘要: Path of Equal Weight (DFS)Given a non-empty tree with root R, and with weight Wi assigned to each tree node Ti. The weight of a path from R to L is de... 阅读全文
posted @ 2015-01-19 08:01 小爷 阅读(411) 评论(0) 推荐(0) 编辑
摘要: Linked List Sorting (链表)A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure ... 阅读全文
posted @ 2015-01-19 07:57 小爷 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Pop Sequence (栈)Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to t... 阅读全文
posted @ 2015-01-19 07:54 小爷 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Given two strings S1 and S2, S = S1 - S2 is defined to be the remaining string after taking all the characters in S2 from S1. Your task is simply to c... 阅读全文
posted @ 2015-01-19 07:49 小爷 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 第一季(并查集 2005) 题目描述: 某省调查城镇交通状况,得到现有城镇道路统计表,表中列出了每条道路直接连通的城镇。省政府“畅通工程”的目标是使全省任何两个城镇间都可以实现交通(但不一定有直接的道路相连,只要互相间接通过道路可达即可)。问最少还需要建设多少条道路? 输入: 测试输入包含若干测试用 阅读全文
posted @ 2015-01-18 14:44 小爷 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 一、民企1. 百度 13k*14.6,special 14~17k*14.6开发类 13K*14.6 (2014)测试类、前端类 12K*14.6 (2014)2. 腾讯 11.5k*16,special 12~14k*16技术类研究生 11.5K*16 (2014)终端开发本科生 10K*16 ... 阅读全文
posted @ 2015-01-18 14:25 小爷 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 今天看了两章C语言,于是乎编段程序复习下。 还是不清楚这些神奇的东西的到底要干嘛用。。。 敲完后,显得这段代码高大上 但是,想实现这个程序,需要这么写的复杂吗?==|| #include <stdio.h> #include <math.h> #include <stdlib.h> #include 阅读全文
posted @ 2015-01-18 14:21 小爷 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 0.单链表的增、删、改、查(无头指针) 1 #include <stdio.h> 2 #include<stdlib.h> 3 struct Node 4 { 5 int val; 6 Node * next; 7 }; 8 9 Node* Node_Insert(Node* First,int v 阅读全文
posted @ 2015-01-18 10:08 小爷 阅读(883) 评论(0) 推荐(0) 编辑
摘要: 1、请你自我介绍一下自己好吗?回答提示:一般人回答这个问题过于平常,只说姓名、年龄、爱好、工作经验,这些在简历上都有。其实,企业最希望知道的是求职者能否胜任工作,包括:最强的技能、最深入研究的知识领域、个性中最积极的部分、做过的最成功的事,主要的成就等,这些都可以和学习无关,也可以和学习有关,但要... 阅读全文
posted @ 2015-01-17 14:15 小爷 阅读(204) 评论(0) 推荐(0) 编辑