<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/anyoneking" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/anyoneking" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 28 Mar 2011 10:28:00 GMT</lastBuildDate><title>懒散狂徒的专栏</title><description>Share everything you can</description><link>http://blog.csdn.net/blogrss.aspx?username=anyoneking</link><item><title>八皇后算法-python</title><link>http://blog.csdn.net/anyoneking/archive/2011/03/28/6284261.aspx</link><description>&lt;br /&gt;#encoding=utf8
'''
八皇后问题：每一行，每一列，每一个斜线列只能有一个皇后。
'''
size = 8
queuePosition = {}
allCount = 0
def generateQueuePosition(n):
    global allCount
    if n &gt;= size :
        return False
    yList = getFreeGrid(n)#获取当前皇后可以放入的y轴坐标列表
    for y in yList:
        queuePosition[n]=(n,y)
        if n == size -1:
            print queuePosition
            allCount += 1          
        if n&lt;img src=&quot;http://www1.feedsky.com/t1/490852487/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2011/03/28/6284261.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/490852487/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/490852487/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 28 Mar 2011 18:28:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2011/03/28/6284261.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2011/03/28/6284261.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/490852487/1295745</fs:itemid></item><item><title>使用二叉树排序</title><link>http://blog.csdn.net/anyoneking/archive/2011/03/24/6273386.aspx</link><description>&lt;br /&gt;#encoding=utf8

'''
B+树中的节点。其中value为当前节点值。
lNode为左孩子节点，rNode为右孩子节点，count为重复数量
'''
class TNode(object):
    def __init__(self,value,lnode=None,rnode=None,count=1):
        self.value = value
        self.lNode = lnode
        self.rNode = rnode
        self.count = count
    
    def setLNode(self,node):
        self.lNode = node
    
    def setRNode(self,node):
        self.rNode = node
    
    def getLNode(self):
        return self.lNode
    
    def getRNode(self&lt;img src=&quot;http://www1.feedsky.com/t1/489044183/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2011/03/24/6273386.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044183/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044183/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 24 Mar 2011 10:33:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2011/03/24/6273386.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2011/03/24/6273386.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044183/1295745</fs:itemid></item><item><title>项目管理修炼之道-----1-3章读书笔记</title><link>http://blog.csdn.net/anyoneking/archive/2011/03/24/6273002.aspx</link><description>一、            启动项目&lt;br /&gt;必须要多做一点组织和规划的工作，才能为项目的成功夺保留一份希望。1.      定义项目和项目经理1.1项目&lt;br /&gt;一个独特的任务或是系统化的流程，其目的是创建新的产品或服务，产品和服务交付完成标志着项目的结束。项目都有风险，并且受制于有限的资源。&lt;br /&gt;项目的核心是什么？是产品。1.2产品&lt;br /&gt;项目产生的一系列可交付物。1.3项目经理&lt;br /&gt;负责向团队清晰说明完成的含义，并带领团队完成项目的人。&lt;br /&gt;完成是指产品符合组织对这个产品的要求，也能满足客户使用这个产品的需求。无论规模大小，是项目就存在风险。项目经理必须理解项目的关键驱动因素是什么。2.      管理项目的关键驱动因素、约束和浮动因素2.1了解项目背景&lt;br /&gt;充分的了解项目背景，有助于我们确定项目的驱动因素是什么。2.2确定关键驱动因素、约束、浮动因素&lt;br /&gt;首先要记录客户的期望。想要什么？何时需要？质量如何？&lt;br /&gt;其次，要记录项目的约束。人手怎么样？有多少钱？约束决定了项目的规模。&lt;br /&gt;对比以上2项，首先想要的项目成功的必要因素是&lt;img src=&quot;http://www1.feedsky.com/t1/489044184/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2011/03/24/6273002.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044184/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044184/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 24 Mar 2011 08:32:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2011/03/24/6273002.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2011/03/24/6273002.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044184/1295745</fs:itemid></item><item><title>直接排序算法python实现</title><link>http://blog.csdn.net/anyoneking/archive/2011/03/23/6271870.aspx</link><description>&lt;br /&gt;一直对算法不是很上心，今天跟同事聊天，了解到算法很吃香呀！&lt;br /&gt;刚开始学习python，就一个一个的算法来吧！希望有时间能坚持下去！&lt;br /&gt;大家别拍砖！我只是留个笔记在这里。&lt;br /&gt;直接排序法&lt;br /&gt;直接选择排序法的算法是这样的，首先选出前n个元素中的最小（大）者，如果这个最小（大）者不是第1个元素，&lt;br /&gt;则与第1个元素交换，然后以同样的方法对付后 n-1个元素（分治），直到处理的元素只剩一个，即得到有序序列。&lt;br /&gt;它和冒泡排序法很类似，不同的是冒泡排序法进行了更多次的交换，而有些交换是不必要的，&lt;br /&gt;这使得冒泡排序法是不稳定的，而直接选择排序法是稳定的排序法。&lt;br /&gt;&lt;br /&gt;def directSort(olist):
    if olist == None or list != type(olist): return olist ;
    if len(olist)0:
        maxInde&lt;img src=&quot;http://www1.feedsky.com/t1/489044185/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2011/03/23/6271870.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044185/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044185/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 23 Mar 2011 18:21:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2011/03/23/6271870.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2011/03/23/6271870.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044185/1295745</fs:itemid></item><item><title>django in action</title><link>http://blog.csdn.net/anyoneking/archive/2011/03/22/6266751.aspx</link><description>h1. 安装

tar xzvf Django-*.tar.gz

cd Django-\*

sudo python setup.py install

完成后，利用如下代码来查看安装版本。

{code}

python

import django

django.VERSION

{code}

h1. 框架介绍

django提供了一套快速使用python开发web项目的技术框架。该框架是MVC模式。Model层是数据库层，负责对底层数据库的CRUD，支持ORM，所有数据库操作都是对对象的操作。同时也支持自定义sql的查询。

View为视图层，包括了视图函数和web页面的展现。

Control为控制层，实现了request，response，session等中间件来拦截过滤请求，并提供了url映射。&lt;img src=&quot;http://www1.feedsky.com/t1/489044186/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2011/03/22/6266751.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044186/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044186/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 22 Mar 2011 08:49:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2011/03/22/6266751.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2011/03/22/6266751.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044186/1295745</fs:itemid></item><item><title>【每天算法4】编写一个截取字符串的函数，输入为一个字符串和字节数，输出为按字节截取的字符串。</title><link>http://blog.csdn.net/anyoneking/archive/2010/03/26/5418701.aspx</link><description>题目:
编写一个截取字符串的函数，输入为一个字符串和字节数，输出为按字节截取的字符串。   但是要保证汉字不被截半个，如“我ABC”4，应该截为“我AB”，输入“我ABC汉DEF”，6，应该输出为“我ABC”而不是“我ABC+汉的半个”。 package com.sw.suanfa.first.ten;
/**
 * 编写一个截取字符串的函数，输入为一个字符串和字节数，输出为按字节截取的字符串。  
 *  但是要保证汉字不被截半个，
 *  如“我ABC”4，应该截为“我AB”，
 *  输入“我ABC汉DEF”，6，应该输出为“我ABC”而不是“我ABC+汉的半个”。 
 * @author songwei
 *
 *我的处理方式：截取字符串的一个字符，加入StringBuffer中，并取其字节数，并入当前获取字符的总长度中，
 *如果总长度大于等于输入的长度，则返回StringBuffer的toString值。
 *getSubString方法传入encoding值。UTF-8中文占3个字节，GBK占2个。结果有所不同，&lt;img src=&quot;http://www1.feedsky.com/t1/489044187/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2010/03/26/5418701.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044187/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044187/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 26 Mar 2010 10:46:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2010/03/26/5418701.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2010/03/26/5418701.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044187/1295745</fs:itemid></item><item><title>【每天算法3】：用java语言实现，二维Vector的排序组合</title><link>http://blog.csdn.net/anyoneking/archive/2010/03/25/5415645.aspx</link><description>&lt;br /&gt;题目：&lt;br /&gt;有一个二维Vector，每个元都是字符串（或者其他对象），如下面这个三行，每行元素不固定的二维Vector  V。&lt;br /&gt;
                      A、B、C、D&lt;br /&gt;
                      H、I、J、K、M&lt;br /&gt;
                      X、Y、Z&lt;br /&gt;
      求出满足以下条件的所有Vector D（一定是所有可能的情况）：&lt;br /&gt;
1.此Vector D的元素包含V的所有元素，且每个元素仅出现一次&lt;br /&gt;
2.
此Vector
D中包含在V[1]中的元素之间的顺序不能发生改变，即A、B、C、D之间的顺序不发生改变，同理，V[2]、V[3]。都不发生改变。对于本例，也就是
说，在结果D中，A、B、C、D的先后顺序不变，H、I、J、K、M的先后顺序不变，X、Y、Z的先后顺序不变。结果D的几种可能的情况是：&lt;br /&gt;
            1：A、B、C、D、H、I、J、K、M、X、Y、Z&lt;br /&gt;
            2：H、&lt;img src=&quot;http://www1.feedsky.com/t1/489044188/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2010/03/25/5415645.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044188/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044188/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 25 Mar 2010 14:02:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2010/03/25/5415645.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2010/03/25/5415645.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044188/1295745</fs:itemid></item><item><title>【每天算法2】：用java语言实现，一个组数：122345这6个数，打印出它所有可能的组合；要求4不能在第3位，3和5不能相连。</title><link>http://blog.csdn.net/anyoneking/archive/2010/03/24/5411415.aspx</link><description>一个组数：122345这6个数，打印出它所有可能的组合；要求4不能在第3位，3和5不能相连。我在实现这个算法的时候，按照len不固定的方式，利用递归方式进行处理。感觉我的算法复杂度还是挺高的。过程中，不断的创建新的数组列别。如果你有更好的算法，请发上来，可以好好学习下。package com.sw.suanfa.first.ten;

import java.util.ArrayList;
import java.util.List;

/**
 * 用java语言实现，一个组数：122345这6个数，打印出它所有可能的组合；要求4不能在第3位，3和5不能相连。
 * 我的做法：首先，我确定用递归实现。
 *          其次，不排除任何条件，打出所有的组合。
 *          在递归中增加了preNum，和level参数，可方便的对条件【4不能在第3位，3和5不能相连】进行过滤。
 *          在递归正增加了intList，便于排除重复。比如122345这&lt;img src=&quot;http://www1.feedsky.com/t1/489044189/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2010/03/24/5411415.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044189/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044189/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 24 Mar 2010 12:40:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2010/03/24/5411415.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2010/03/24/5411415.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044189/1295745</fs:itemid></item><item><title>【每天算法1】：用java 语言实现，输入一个数，就相应地输出的几维数组</title><link>http://blog.csdn.net/anyoneking/archive/2010/03/23/5407453.aspx</link><description>想要换工作了，但是感觉自己还没有准备好，毕竟笔试面试还是需要多积累经验的。多做做题总没有坏处。希望自己能坚持每天一个算法。题目也不一定难，主要是希望自己能对各个方面都有所了解，为了以后找个好的工作奠定些小小的基础。题目都是从baidu上随便找的，找到哪个算哪个，尽量自己去完成，如果是自己没有完成的，而是看别人的解答，我会标注出来的。毕竟是别人的劳动所得。废话不多说了，希望自己坚持吧。编程：用java 语言实现，输入一个数，就相应地输出的几维数组，例如：输入3，就输出这样的3维数组： 

000  

011 

012 

若是输入4，就打印出4维的数组： 

0000 

0111 

0122 

0123整体不算难，只要找到共性就好了。package com.sw.suanfa.first.ten;
import java.util.Scanner;
/**&lt;img src=&quot;http://www1.feedsky.com/t1/489044190/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2010/03/23/5407453.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044190/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044190/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Mar 2010 11:32:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2010/03/23/5407453.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2010/03/23/5407453.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044190/1295745</fs:itemid></item><item><title>遍历一次字符串，选择出在该字符串中出现次数最多的字符及其出现次数(Java)</title><link>http://blog.csdn.net/anyoneking/archive/2010/01/19/5213388.aspx</link><description>上班的时候，听一个同事说起了百度的一个面试题。“遍历一次字符串，选择出在该字符串中出现次数最多的字符及其出现次数”比如说当前的字符串为&quot;abc2d2e2fg2e1111bc11yh22fd2a2ai222eur张灯结彩&quot;,则我应得到的是字符2，出现次数11。特定需求，只通过一次遍历来获取。也就是说，只能循环字符串一次，大概看了一下，就开始入手了。于是写下了下面的代码：	public static void queryMaxCountByMap(String str) throws Exception{
		Map map = new HashMap();
		if(str == null || str.length()&lt;img src=&quot;http://www1.feedsky.com/t1/489044191/anyoneking/csdn.net/s.gif?r=http://blog.csdn.net/anyoneking/archive/2010/01/19/5213388.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/anyoneking/489044191/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/anyoneking/489044191/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 19 Jan 2010 15:26:00 +0800</pubDate><author>懒散狂徒</author><guid isPermaLink="false">http://blog.csdn.net/anyoneking/archive/2010/01/19/5213388.aspx</guid><dc:creator>懒散狂徒</dc:creator><fs:srclink>http://blog.csdn.net/anyoneking/archive/2010/01/19/5213388.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/anyoneking/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/anyoneking/~1292922/489044191/1295745</fs:itemid></item></channel></rss>
