Plan 如何执行和奖惩 目前由于自己生活的有些混乱,自己找到不方向,所以急需自己给一个方向。让自己能够有一个奋斗的目标。其实给自己定的计划真的很多,但是完成的是如此之少。为了强化自己的执行能力,需要将自己一些计划公布出来,让大家来监督自己。让自己更加有动力来提高自己的执行力和专注力。每周都要有一个...
分类:
其他好文 时间:
2014-08-13 14:31:56
阅读次数:
254
很明显的最小生成树模板题 多点生成[cpp] view plaincopy#includeusingnamespacestd;intn,k,a;intdist[120],m[120][120];boolp[120];voidprim(){for(inti=1;im[k][j])dist[j]=m[k...
分类:
其他好文 时间:
2014-08-12 18:49:54
阅读次数:
186
很明显的最小生成树模板题
#include
using namespace std;
int n,k,a;
int dist[120],m[120][120];
bool p[120];
void prim()
{
for(int i=1;i<=n;i++)
{
if(p[i]==false)
{
int Min=10002...
分类:
其他好文 时间:
2014-08-12 13:47:24
阅读次数:
174
http://poj.org/problem?id=2175
Evacuation Plan
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 3256
Accepted: 855
Special Judge
Description
...
分类:
其他好文 时间:
2014-08-08 12:54:35
阅读次数:
354
CoreException: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-compiler-plugin:2.3.2 or one of its dependencies could not be resolved: Failed to read artifact descriptor for...
分类:
其他好文 时间:
2014-08-05 19:42:30
阅读次数:
236
Mysql 查询运行过程 大致分为4个阶段吧:语法分析(sql_parse.cc)>>sql_resolver.cc # JOIN.prepare生成逻辑查询plan(sql_optimizer.cc)>># JOIN.optimize生成物理查询plan(sql_planner.cc)run th...
分类:
数据库 时间:
2014-08-02 12:28:33
阅读次数:
239
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example, "A man, a plan, a canal: Pan...
分类:
其他好文 时间:
2014-08-01 22:31:42
阅读次数:
208
题目:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: ....
分类:
编程语言 时间:
2014-08-01 10:27:11
阅读次数:
310
Below tables contains contant you need to consider while planning for a CDB.ActionConsiderations for a CDBAdditional InformationPlan the tables and in...
分类:
数据库 时间:
2014-07-31 20:06:07
阅读次数:
401
Spark SQL 物理计划到 RDD 的计算过程实现。...
分类:
数据库 时间:
2014-07-29 22:08:02
阅读次数:
656