C版本(来自最短路径算法—Dijkstra(迪杰斯特拉)算法分析与实现(C/C++)) 1 /*************************************** 2 * About: 有向图的Dijkstra算法实现 3 * Author: Tanky Woo 4 * ...
分类:
其他好文 时间:
2014-06-28 10:13:49
阅读次数:
175
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Common 7 { 8 //Author:GaoBin...
分类:
其他好文 时间:
2014-06-27 20:20:08
阅读次数:
362
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#什么是函数#就是引用,创建,使用#例子deffoo(...
分类:
编程语言 时间:
2014-06-27 17:13:27
阅读次数:
356
涉及以下几个方面:C/C++汇编操作系统反汇编破解缓存溢出qBooks on C/C++:·The C Programming Languageby Brian W.Kernighan and Dennis M. Ritchie. Prentice Hall, 1988. The author’s ...
分类:
其他好文 时间:
2014-06-27 16:47:31
阅读次数:
343
#-*-coding:utf-8-*-#====================#File:python#Author:python#Date:2014#====================__author__='Administrator'#执行环境#可调用对象"""许多的python对象都是...
分类:
编程语言 时间:
2014-06-27 13:01:47
阅读次数:
219
题目链接:http://poj.org/problem?id=3311
解法:标准的状压dp类型,先floyd获得两两之间最短距离。然后dp[i][j]表示剩下集合i没走,已经走到j的最短距离;
代码:/******************************************************
* @author:xiefubao
******************...
分类:
其他好文 时间:
2014-06-27 10:11:29
阅读次数:
282
--------------------------------------------------------------------
author:jiangxin
Email:jiangxinnju@163.com
Blog:http://blog.csdn.net/jiangxinnju
-----------------------------------------------...
分类:
系统相关 时间:
2014-06-27 08:21:48
阅读次数:
295
至于Guava这个这里就不多说了,上一篇已经讲得很详细了!这次主要是分享一下Guava对集合的一些升华处理,好啦,不多说,直接上代码:package com.joyce.guava.bean;
/**
* 学生实体类
*
* @author Joyce.Luo
* @date 2014-6-19 下午02:37:19
*/
public class Student {
/**
...
分类:
其他好文 时间:
2014-06-27 08:19:03
阅读次数:
188
# -*- coding: utf-8 -*- # ==================== #File: python #Author: python #Date: 2014 #==================== __author__ = 'Administrator' #operator模...
分类:
其他好文 时间:
2014-06-26 16:09:10
阅读次数:
218
本人用epoll写了一个简单的http服务器,该服务器在客户端第一次发送数据时可以正确处理,但是当客户端不关闭继续发送数据时,服务器无法读取,请求大家帮忙看看哪里有问题,谢谢server.h/*
* server.h
*
* Created on: Jun 23, 2014
* Author: fangjian
*/
#include
#ifndef SERVER_H_...
分类:
其他好文 时间:
2014-06-26 13:13:28
阅读次数:
158