Map map = new HashMap(); map.put("url", "&response_type=code&scope=snsapi_base&state=2#wechat_redirect"); Gson gson = new GsonBu...
分类:
其他好文 时间:
2015-04-08 13:09:10
阅读次数:
257
Code import java.util.Random; import java.awt.*; //引入的包,Graphics所在的包 import java.applet.*; class Particle { protected int x; protected i...
分类:
其他好文 时间:
2015-04-08 12:37:39
阅读次数:
205
和I 比起来其实很不一样,反而很类似于linkedlist reverse,不断的看pre.next的东西,我自己想了好久,开始用三个指针,完全糊涂,还是退回到原来的code,才明了public class Solution { public ListNode deleteDuplicates...
分类:
其他好文 时间:
2015-04-08 12:24:47
阅读次数:
95
codeforces ZeptoLab Code Rush 2015 ABCD详细题解+代码~...
分类:
其他好文 时间:
2015-04-08 10:56:51
阅读次数:
175
题目大意给出一棵树,问选择三个点,使得这三个点相互的距离相等的方案有多少种。思路这三个点肯定不能再一条链上, 那么就肯定能够确定一个中心点,使得三个点到这个中心点的距离都相等。
之后我们就可以枚举这个中心点,对于每个深度统计一下就可以了。虽然看起来像是O(n3)O(n^3)的,但是跑的飞起啊。CODE#define _CRT_SECURE_NO_WARNINGS#include ...
分类:
其他好文 时间:
2015-04-08 10:56:19
阅读次数:
161
codeforces ZeptoLab Code Rush 2015 ABCD 详细题解+代码~...
分类:
其他好文 时间:
2015-04-08 09:14:49
阅读次数:
345
midifan.com/moduleuser-index-419370.htmmidifan.com/moduleuser-index-419463.htmmidifan.com/moduleuser-index-419492.htmmidifan.com/moduleuser-index-4195...
分类:
数据库 时间:
2015-04-08 06:30:40
阅读次数:
678
1. 提示nuget版本低时,直接到官网下载http://nuget.codeplex.com/downloads/get/822130 下载相应visual studio版本。2.具体migration过程可以 参考http://www.pronopcommerce.com/using-entit...
分类:
数据库 时间:
2015-04-08 00:53:12
阅读次数:
338
题目链接:Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print th...
分类:
其他好文 时间:
2015-04-07 23:34:18
阅读次数:
318
.386;32位架构
.model flat, stdcall;
include masm32.inc
include kernel32.inc
includelib masm32.lib
includelib kernel32.lib
.data;数据段
szText db "Hello ASM!", 0
.code;代码段
TestPrint proc near;过程声明
...