POJ 3974 Description Andy the smart computer science student was attending an algorithms class when the professor asked the students a simple question ...
分类:
其他好文 时间:
2016-04-17 13:05:20
阅读次数:
166
1、查询字符串(location.search)参数 1 function getQueryStringArgs(){ 2 // 取得查询字符串并去掉开头的问号 3 var qs = window.location.search.length > 0 ? window.location.search ...
分类:
Web程序 时间:
2016-04-13 11:20:05
阅读次数:
177
Tips for Good Writing Copyright 2005 by Richard F. Hirsh Richard F. Hirsh Professor, History and STS (0117) Virginia Tech Blacksburg, VA 24061 Send e- ...
分类:
其他好文 时间:
2016-04-09 15:22:58
阅读次数:
238
两道Prim解法范例题型,简单的裸Prim,且两题相较以边为重心的Kruskal解法而言更适合以点为重心扩展的Prim解法。 ZOJ1586-QS Network 题意:见Code 题解:直接的MST题型,本题的图为稠密图,因此适合以点为扩展导向的Prim算法(代码量也较少)。 大抵是先以某点A为中 ...
分类:
其他好文 时间:
2016-04-09 00:14:48
阅读次数:
218
#!/usr/bin/env python # Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com> # # This file is part of paramiko. # # Paramiko is free softwar
分类:
其他好文 时间:
2016-03-11 15:33:24
阅读次数:
393
做营销,首先要懂市场。 编者按:本文转载至微信公众号“李叫兽”(ID:Professor-Li),作者李靖。转载已获授权,版权归原作者所有,如需转载此文,请联系原公众号“李叫兽”。 很多公司市场部的人,每天忙着推广各种活动,忙着抓热点,甚至忙着做挂历,却忘记去真正了解市场营销的最基础定义:什么才叫一
分类:
其他好文 时间:
2016-03-02 12:42:06
阅读次数:
178
javascript 获取当前 URL 参数的两种方法: //返回的是字符串形式的参数,例如:class_id=3&id=2& function getUrlArgStr(){ var q=location.search.substr(1); var qs=q.split('&'); var arg
分类:
Web程序 时间:
2016-02-20 10:21:26
阅读次数:
169
Description During his last sabbatical, professor M. A. Ya made a surprising discovery about the old Maya calendar. From an old knotted message, profe
分类:
其他好文 时间:
2016-02-16 18:44:41
阅读次数:
169
来自 http://www.tdx.com.cn/qs.html 万和证券 万和证券通达信专业版 http://www.wanhesec.com.cn 万联证券 万联证券通达信 http://www.wlzq.cn/ 上海证券 上海证券行情(卓越版)网上交易系统 http://www.962518.
分类:
其他好文 时间:
2016-02-07 02:23:01
阅读次数:
252
Qt同步线程 我们知道,多线程有的时候是很有用的,但是在访问一些公共的资源或者数据时,需要进行同步,否则会使数据遭到破坏或者获取的值不正确。Qt提供了一些类来实现线程的同步,如QMutex,QMutexLocker,QReadWriteLock,QReadLocker,QWriteLocker,QS
分类:
编程语言 时间:
2016-02-01 20:38:59
阅读次数:
1011