#include#includeintmain(void){printf("Callingabort()\n");abort();return0;/*Thisisneverreached*/}
分类:
其他好文 时间:
2014-10-13 15:29:49
阅读次数:
153
static char OperationKey;+(NSString *)eventName:(UIControlEvents)event{ switch (event) { case UIControlEventTouchDown: return @"UIControlEvent...
分类:
其他好文 时间:
2014-10-13 14:34:19
阅读次数:
203
#include <iostream> #include <sstream> int main() { int i = 123; std::string temp; std::stringstream ss; ss << std::hex << i; ss >> temp; std::cout << temp << std::endl; return 0; }...
分类:
编程语言 时间:
2014-10-13 14:26:09
阅读次数:
211
function bin2String(array) { return String.fromCharCode.apply(String, array);}var bit=[104,101,108,108,111,32,119,111,114,108,100];var tostring=bin2S....
分类:
Web程序 时间:
2014-10-13 14:21:49
阅读次数:
310
1 angular.module('locals',[]) 2 .factory('ls', ['$window', function($window) { 3 return { 4 set: function(key, value) { 5 $window.localSt...
分类:
其他好文 时间:
2014-10-13 13:29:29
阅读次数:
205
namespace 扩展方法{////// 1、当前项目添加一个静态类;/// 2、声明静态方法;/// 3、方法参数类型前加this;/// 4、即可通过对应类型变量点出该方法。 /// public static class extmethod { public static strin...
分类:
其他好文 时间:
2014-10-13 12:49:59
阅读次数:
138
Palindrome Partitioning
Total Accepted: 21056 Total
Submissions: 81036My Submissions
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all...
分类:
其他好文 时间:
2014-10-13 11:18:20
阅读次数:
173
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.For example,Given n = 3,You should return the following...
分类:
其他好文 时间:
2014-10-13 09:58:09
阅读次数:
170
这题目意思能忍?读了半年,乱七八糟的
记忆化搜索 拖拖的,dp[i][0]代表以获得最小值为目标的船以i为起点,dp[i][1]代表以获得最大值为目标的船以i为起点,接下来暴力枚举入度为0的点为起点,开始记忆化搜索,
const int N = 100000 + 55;
int dp[N][2];
int value[N];
int degree[N];
vector G[N];
...
分类:
其他好文 时间:
2014-10-13 01:00:53
阅读次数:
258
//开放寻址法
//散列函数包括线性探测、二次探测、双重探测
#include<iostream>
using?namespace?std;
//除法散列法
int?h1(int?k,int?m)
{
????????return?k%m;?
}
//乘法散列法
int?h2(int?k...
分类:
其他好文 时间:
2014-10-13 00:14:58
阅读次数:
1030