<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>讨论列表</title>
    <description>讨论列表</description>
    <link>http://community.csdn.net/</link>
    <copyright>Copyright 1998 - 2007 CSDN.NET Inc. All Rights Reserved</copyright>
    <pubDate>Sun, 12 Oct 2008 11:40:17 GMT</pubDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>community.csdn.net</generator>
    <item>
      <title>第一次不重复字符串</title>
      <description>今天去面试了，问我如何找出一个字符串中第一个不重复的字母，我的思路是设置数组记录每个字母出现的次数，找出第一个次数只为1的字母就可以了。面试官说这样也行，不过建议我用哈希来做，我没答上来，因为对那个不...</description>
      <link>http://topic.csdn.net/u/20081011/12/53039e82-207d-41ff-8d37-69c564623d70.html</link>
      <author>ilovezc</author>
      <pubDate>Sat, 11 Oct 2008 12:37:02 GMT</pubDate>
    </item>
    <item>
      <title>不带头的单链表类</title>
      <description>设计一个不带头结点的单链表类，要求：（1)成员函数包括：逐个输出所有数据元素，取出单个数据元素，插入，删除，取数据元素个数。（2)设计一个测试函数，验证以上各成员函数的正确性。</description>
      <link>http://topic.csdn.net/u/20081007/16/d6aef043-e47f-4a4f-aed3-9edcbc925814.html</link>
      <author>houjiaoer</author>
      <pubDate>Tue, 07 Oct 2008 16:27:52 GMT</pubDate>
    </item>
    <item>
      <title>下面的MATLAB代码哪里有问题？为何不能正常运行？</title>
      <description>function y=F(x,p)x(1)=x,i=1;while (i=0&amp;x(i)=p&amp;x(i)=0.5&amp;x(i)&lt;1)        y(i)=F((1-x(i)),p);    end    ...</description>
      <link>http://topic.csdn.net/u/20081010/22/ebe8dfae-f196-4960-8481-4d6021cb7912.html</link>
      <author>tianhuook</author>
      <pubDate>Fri, 10 Oct 2008 22:38:35 GMT</pubDate>
    </item>
    <item>
      <title>2008年英特尔软件用户技术交流活动 邀请您参加</title>
      <link>http://topic.csdn.net/u/20080901/15/73928b30-4227-4285-b22f-87a1d9863cd1.html</link>
      <author>intel_iclifort</author>
      <pubDate>Mon, 01 Sep 2008 23:25:03 GMT</pubDate>
    </item>
    <item>
      <title>求数据结构与算法分析（C++语言描述） 作者：Larry Nyhoff  这本书的习题答案</title>
      <description>如题，哪为有电子版的能发给我吗？pengzhixi682163.com 谢谢！！</description>
      <link>http://topic.csdn.net/u/20081004/08/2b9972f0-ad16-4195-b424-194dfe0deacf.html</link>
      <author>pengzhixi</author>
      <pubDate>Sat, 04 Oct 2008 08:58:24 GMT</pubDate>
    </item>
    <item>
      <title>第一次不重复字符串</title>
      <description>今天去面试了，问我如何找出一个字符串中第一个不重复的字母，我的思路是设置数组记录每个字母出现的次数，找出第一个次数只为1的字母就可以了。面试官说这样也行，不过建议我用哈希来做，我没答上来，因为对那个不...</description>
      <link>http://topic.csdn.net/u/20081011/12/8be73cd6-d422-4294-9644-c7aca57b4842.html</link>
      <author>ilovezc</author>
      <pubDate>Sat, 11 Oct 2008 12:36:50 GMT</pubDate>
    </item>
    <item>
      <title>KMP算法!请教!</title>
      <description>最近老师在课堂上讲了KMP算法,不是很懂!现在请教各位大侠:   我对于那个next[j]函数的算法总感觉似懂非懂,知道是用递归的方法来求.可是又觉得有点什么地方不对,知道书上写的推理过程都是对的,可...</description>
      <link>http://topic.csdn.net/u/20081011/16/876fa889-6acf-4e96-9e8e-f18fd267077b.html</link>
      <author>sagegz</author>
      <pubDate>Sat, 11 Oct 2008 16:53:50 GMT</pubDate>
    </item>
    <item>
      <title>北京侠客行公司诚聘英才</title>
      <link>http://topic.csdn.net/u/20080902/23/6a52cb0c-3c30-4252-bb6a-e878a94b41bb.html</link>
      <author>xkx2008</author>
      <pubDate>Wed, 03 Sep 2008 07:17:55 GMT</pubDate>
    </item>
    <item>
      <title>二项查找的一个问题</title>
      <description>在二项查找中，如果不允许向上的操作，即不允许从孩子到父亲的操作，如何寻找一个元素的后继。对于元素有右孩子的情况，这个限制不会受到影响。但是，对于元素没有右孩子的情况，这个限制会受到影响。</description>
      <link>http://topic.csdn.net/u/20081010/15/b739d6ee-73cd-4832-aa80-3f00589019f1.html</link>
      <author>mvgarnett</author>
      <pubDate>Fri, 10 Oct 2008 15:15:53 GMT</pubDate>
    </item>
    <item>
      <title>一个算法问题，divide-and- conquer,T (n) = T ( sqrt(n)) + 1的复杂度是多少？</title>
      <description>一个算法问题，divide-and- conquer,T (n) = T ( sqrt(n)) + 1的复杂度是多少？这道题不能用MASTER THEOREM？结果是O(LOGLOG n)不太明白，谁...</description>
      <link>http://topic.csdn.net/u/20080930/02/953c8496-2a05-4866-a2d1-2132d9b96baa.html</link>
      <author>ruyifeng</author>
      <pubDate>Tue, 30 Sep 2008 02:52:05 GMT</pubDate>
    </item>
    <item>
      <title>四道微软面试算法题</title>
      <description>朋友去MS面试，我从他口里探到几道编程面试题。特来和各位分享。(1) 一个整数数列，元素取值可能是0~65535中的任意一个数，相同数值不会重复出现。0是例外，可以反复出现。请设计一个算法，当你从该数...</description>
      <link>http://topic.csdn.net/u/20081006/16/75461d49-6a8f-4684-84b6-aceee56c832f.html</link>
      <author>bigpeon</author>
      <pubDate>Mon, 06 Oct 2008 16:02:10 GMT</pubDate>
    </item>
    <item>
      <title>一个函数</title>
      <description>f(f(x)) = x^2 -2f(x) = ?</description>
      <link>http://topic.csdn.net/u/20081011/15/3781c98a-db33-46bd-b12f-c9af8e7bbcce.html</link>
      <author>fallening</author>
      <pubDate>Sat, 11 Oct 2008 15:49:56 GMT</pubDate>
    </item>
    <item>
      <title>求3D游戏中的缩微地图代码！</title>
      <description>求一款3D游戏缩微地图代码（是三维地形显示并用红、黄、蓝颜色显示地形高度）制作思想和步骤也行！请各位大虾帮忙啊！谢谢了！email：zn123940@yahoo.com.cn</description>
      <link>http://topic.csdn.net/u/20081005/16/20bb2d93-674d-4bd7-8bc5-fd2b6aa9144f.html</link>
      <author>zn123940</author>
      <pubDate>Sun, 05 Oct 2008 16:51:13 GMT</pubDate>
    </item>
    <item>
      <title>关于一个算法设计问题，值得想想，大家来看看</title>
      <description>如果使用与图相关的知识，设计算法来找出一段程序代码中：        (1)定义了但未被使用的变量;       (2)使用了但没有被定义的变量;       (3)其他与变量相关的错误 我的初步想法...</description>
      <link>http://topic.csdn.net/u/20081011/23/bbd8bdc5-810a-4146-a28c-5cb8d4f1d178.html</link>
      <author>wss71104307</author>
      <pubDate>Sat, 11 Oct 2008 23:13:36 GMT</pubDate>
    </item>
    <item>
      <title>网络安全需要学习哪些知识</title>
      <description>想学习网络安全，需要学习哪些相关的知识，现在学网络安全的主要在从事什么工作？</description>
      <link>http://topic.csdn.net/u/20081011/23/3cd587a8-d3f8-4848-97cd-917381f66d65.html</link>
      <author>luomoweilan</author>
      <pubDate>Sat, 11 Oct 2008 23:04:40 GMT</pubDate>
    </item>
    <item>
      <title>简单的数学问题，高手请指教！（一）</title>
      <description>在书架上放有编号为1,2,....n的n本书。现将n本书全部取下然后再放回去,当放回去时要求每本书都不能放在原来的位置上。例如:n=3时，原来位置为:123放回去时只能为:312或231这两种问题:求...</description>
      <link>http://topic.csdn.net/u/20081002/15/caa81bae-3e67-462c-b61b-4124208ce6bb.html</link>
      <author>netcat19811012</author>
      <pubDate>Thu, 02 Oct 2008 15:40:54 GMT</pubDate>
    </item>
    <item>
      <title>行指针---有哪个老鸟能看懂最后两行源程序吗</title>
      <description>#includevoid main(){    int a[3][4]={0,1,2,3,4,5,6,7,8,9,10,11};    int(*p)[4];    int i,j;    p=a; ...</description>
      <link>http://topic.csdn.net/u/20081010/11/c0ef84be-98b2-4e95-a2f9-423c33db1959.html</link>
      <author>wei422392991</author>
      <pubDate>Fri, 10 Oct 2008 11:14:34 GMT</pubDate>
    </item>
    <item>
      <title>请教双流的问题</title>
      <description>最近做的这个录播机，要求能支持双流，有没有那位大侠弄过双流啊？在网上搜了半天，感觉这方面的资料少的可怜。</description>
      <link>http://topic.csdn.net/u/20081011/11/35417e57-008f-4d51-8a7e-47ba3d4c0c70.html</link>
      <author>maisie0731</author>
      <pubDate>Sat, 11 Oct 2008 11:42:15 GMT</pubDate>
    </item>
    <item>
      <title>问一个算法的问题  向高高手求教</title>
      <description>已知N个数的值 分别为W1，W2，，，，，WN，还有一个数sum，从那N个数中选取m个数，使其之和等于sum。该问题如何求解？？ 希望能列出递归算法 和非递归算法  包括算法思想。。。小弟 谢谢各位英...</description>
      <link>http://topic.csdn.net/u/20081011/21/079a55ff-12d4-426d-944d-28bf620b8ab3.html</link>
      <author>xinke87</author>
      <pubDate>Sat, 11 Oct 2008 21:25:49 GMT</pubDate>
    </item>
    <item>
      <title>我认识的人工智能</title>
      <description>我对目前大多数各种途径中提到的“人工智能”感到非常的气氛，人们都说人工智能是一门深奥的学问，但是我发现目前大多数媒介中所提到的人工智能都指的是弱人工智能，本应该属于强人工智能的光环全部笼罩到了若人工智...</description>
      <link>http://topic.csdn.net/u/20081011/22/77833c04-7124-4f89-be28-0ed494e1553a.html</link>
      <author>skyair624</author>
      <pubDate>Sat, 11 Oct 2008 22:06:48 GMT</pubDate>
    </item>
    <item>
      <title>帮忙我看一下这个求单链表长度的程序那里有问题嘛？谢谢啊！</title>
      <description>#include#includetypedef struct NODE{char data; struct NODE *link;}NODE;NODE * creat_link_list(int n)...</description>
      <link>http://topic.csdn.net/u/20081011/14/3fa435cf-ec6c-4706-a1c6-bb06e557330d.html</link>
      <author>clever12</author>
      <pubDate>Sat, 11 Oct 2008 14:45:21 GMT</pubDate>
    </item>
    <item>
      <title>我认识的人工智能</title>
      <description>我对目前大多数各种途径中提到的“人工智能”感到非常的气氛，人们都说人工智能是一门深奥的学问，但是我发现目前大多数媒介中所提到的人工智能都指的是弱人工智能，本应该属于强人工智能的光环全部笼罩到了若人工智...</description>
      <link>http://topic.csdn.net/u/20081011/22/eb7deda6-3241-42e8-a10d-1b96f17d60af.html</link>
      <author>skyair624</author>
      <pubDate>Sat, 11 Oct 2008 22:06:44 GMT</pubDate>
    </item>
    <item>
      <title>md5校验时怎么实现高低字节序不同系统间的交互</title>
      <description>最近在IBM和SUN两个系统间对同一个文件作MD5校验，发现结果不一样。应该是高低字节序的问题，想请教一下怎么样才能在这两个系统上产生相同的MD5校验值？</description>
      <link>http://topic.csdn.net/u/20081011/21/1af0a27d-3332-4f80-a8eb-634853578565.html</link>
      <author>littlemonk</author>
      <pubDate>Sat, 11 Oct 2008 21:48:59 GMT</pubDate>
    </item>
    <item>
      <title>cheap wholesale nike air force1 shoes air jordan shoes air yeezy shoes nike Dunk shoes timberland shoes on www.nikestares.com </title>
      <description>www.nikestares.com  specialized in producting and trading world brand sportswear products. We can ma...</description>
      <link>http://topic.csdn.net/u/20081011/21/0bca88f8-4487-413d-b0ba-0b9a6c50c6fa.html</link>
      <author>nikestares</author>
      <pubDate>Sat, 11 Oct 2008 21:40:25 GMT</pubDate>
    </item>
    <item>
      <title>cheap wholesale sneaker jordan shoes nike shox shoes air max shoes adidas shoes prada shoes puma shoes on www.nikestares.com </title>
      <description>www.nikestares.com  specialized in producting and trading world brand sportswear products. We can ma...</description>
      <link>http://topic.csdn.net/u/20081011/21/36630ea9-11ce-46e0-952a-db70ffc7cfa7.html</link>
      <author>nikestares</author>
      <pubDate>Sat, 11 Oct 2008 21:39:22 GMT</pubDate>
    </item>
    <item>
      <title>小妹有几道题不会做，请大家帮帮忙~~~~</title>
      <description>13. 设给定权值总数有n 个，其哈夫曼树的结点总数为(    ) A．不确定        B．2n         C．2n+1         D．2n-126. 将有关二叉树的概念推广到三叉树...</description>
      <link>http://topic.csdn.net/u/20081005/10/0fe7b1e6-7209-42f7-a0c0-2c34b883a6c0.html</link>
      <author>taoqibaobei198554</author>
      <pubDate>Sun, 05 Oct 2008 10:35:31 GMT</pubDate>
    </item>
    <item>
      <title>数据结构经典书籍大全</title>
      <description>大家都看过哪些关于数据结构的书籍啊？在你的心中哪一本是最好的啊？希望大家踊跃发言，共同探讨，一起学习，共同进步！！！</description>
      <link>http://topic.csdn.net/u/20080927/23/264aa276-05f1-48be-b236-290d2b6d31fb.html</link>
      <author>kingwolf_JavaScript</author>
      <pubDate>Sat, 27 Sep 2008 23:58:10 GMT</pubDate>
    </item>
    <item>
      <title>腾讯笔试题</title>
      <link>http://topic.csdn.net/u/20071014/13/2e759694-b29b-4061-bef0-2ea1a9682dc5.html</link>
      <author>wpp_zyt</author>
      <pubDate>Sun, 14 Oct 2007 21:02:43 GMT</pubDate>
    </item>
    <item>
      <title>GalGame通用引擎制作，征求同好，要求是会VB2005或C#</title>
      <description>GalGame就是日本比较流行的那种电子小说类游戏，不太清楚的可以在网上查询一下。如果有兴趣的人，可以E-Mail至vb.ft@163.com，也可联系我QQ：506647743。非盈利内容，纯属兴趣...</description>
      <link>http://topic.csdn.net/u/20081010/14/af9de628-b233-491a-9b65-3c476e591c20.html</link>
      <author>vbfool</author>
      <pubDate>Fri, 10 Oct 2008 14:00:33 GMT</pubDate>
    </item>
    <item>
      <title>远程角色（非本地角色）是否绑定了物理？</title>
      <description>如题。</description>
      <link>http://topic.csdn.net/u/20081011/15/cae73fb4-0a01-4c64-8f8b-874d2f2bae6a.html</link>
      <author>coast19</author>
      <pubDate>Sat, 11 Oct 2008 15:43:29 GMT</pubDate>
    </item>
    <item>
      <title>帧率为什么这么低？大哥帮忙！！</title>
      <description>   大哥姐们块帮忙呀&gt;_GetDeviceCaps(D3DADAPTER_DEFAULT,DeviceType,&amp;caps);   int vp = 0;   if(caps.DevCaps &amp; D...</description>
      <link>http://topic.csdn.net/u/20081011/11/3c74d311-f692-4bff-bf08-9eb1611c31b3.html</link>
      <author>getoneking</author>
      <pubDate>Sat, 11 Oct 2008 11:58:13 GMT</pubDate>
    </item>
    <item>
      <title>网络端口扫描设计...</title>
      <description>要设计一个程序，能够对编号1024以下的网络端口进行扫描，判断其状态，并给出分段显示，对其重要端口进行特殊显示...本人初学，想知道需要看那些书籍，设计得思路应当从那里入手啊...请教各位了...</description>
      <link>http://topic.csdn.net/u/20081011/16/99a7752e-667f-4250-b389-b90f38afa456.html</link>
      <author>mimilee1005</author>
      <pubDate>Sat, 11 Oct 2008 16:31:45 GMT</pubDate>
    </item>
    <item>
      <title>directshow中关于MPEG2文件帧的问题</title>
      <description>最近自己想写一个MPEG2的播放器现在遇到了一点问题不太明白，想请教各位大侠：在IQualProp 接口中，有这样两个函数HRESULT get_FramesDrawn(  int *pcFrames...</description>
      <link>http://topic.csdn.net/u/20081011/15/d8892ea9-e69a-45b3-8d9c-4000a193be87.html</link>
      <author>nwnmrj</author>
      <pubDate>Sat, 11 Oct 2008 15:37:13 GMT</pubDate>
    </item>
    <item>
      <title>关于碰撞检测~~ </title>
      <description>关于碰装检测大家尽情的挥洒吧,2D的,3D的统统来^_^</description>
      <link>http://topic.csdn.net/u/20080928/09/ac7ca9d2-93a0-402a-a978-0699d21260e1.html</link>
      <author>getoneking</author>
      <pubDate>Sun, 28 Sep 2008 09:50:20 GMT</pubDate>
    </item>
    <item>
      <title>机器视觉专用光源</title>
      <description>AOI光源： 该系统利用一组环表复合光源产生红\绿\蓝/白四色光，并以不同的角度照射受检的PCB板，图像传感器捕捉到PCB板的表面反射回来的这些色彩后产生一个包含三维信息的二维图像。 ● 可以检测到P...</description>
      <link>http://topic.csdn.net/u/20081011/14/38522776-bdde-4291-b4f4-4aa4f939f5a2.html</link>
      <author>CST100</author>
      <pubDate>Sat, 11 Oct 2008 14:41:01 GMT</pubDate>
    </item>
    <item>
      <title>串对称性判断</title>
      <description>假设以结点大小为1(且附设头结点)的块链结构存储串，试写出算法判别给定串是否具有对称性，并要求算法的时间复杂度为O(length(s))。</description>
      <link>http://topic.csdn.net/u/20081011/13/794cc225-f4d5-445d-b909-070abfb609ea.html</link>
      <author>WEN2222</author>
      <pubDate>Sat, 11 Oct 2008 13:03:16 GMT</pubDate>
    </item>
    <item>
      <title>如何理解二叉树中序遍历的非递归算法？</title>
      <description>算法如下:[code=C/C++]Status InOrderTraverse(BiTree T, Status(* Visit)(TElemType e)) {    //采用二叉链表存储结构，Vi...</description>
      <link>http://topic.csdn.net/u/20081005/20/07d41745-606e-47d3-a8b8-8f156adabb6f.html</link>
      <author>kameron</author>
      <pubDate>Sun, 05 Oct 2008 20:15:41 GMT</pubDate>
    </item>
    <item>
      <title>变态排考的问题（比较复杂，内详），解决后另开贴加80分。</title>
      <link>http://topic.csdn.net/u/20080922/17/1702705b-de90-4472-b06d-b5c47dc6d5c9.html</link>
      <author>cqnucsmoon</author>
      <pubDate>Tue, 23 Sep 2008 01:28:26 GMT</pubDate>
    </item>
    <item>
      <title>英特尔的库函数的发展</title>
      <description>请问一下，英特尔的库函数的发展有哪些具体的限制，比如说硬件方面的限制或者库函数的量的问题，谢谢</description>
      <link>http://topic.csdn.net/u/20081011/13/19c80295-e42e-4802-affc-1180c0fe3ae7.html</link>
      <author>panxiaohui</author>
      <pubDate>Sat, 11 Oct 2008 13:09:37 GMT</pubDate>
    </item>
    <item>
      <title>采用四元数进行球面插值时如何构造四元数</title>
      <description>采用slert(q0,q1,t)进行插值时，若球面上两点q0、q1的坐标分别为(x0, y0, z0)、(x1, y1, z1)，对应的函数值分别为f0、f1，那么把四元数构造成为q0=[f0, (x...</description>
      <link>http://topic.csdn.net/u/20081008/22/1a9d46ee-916a-40b6-96f1-c4ab72c7b772.html</link>
      <author>gongmingwang</author>
      <pubDate>Wed, 08 Oct 2008 22:06:42 GMT</pubDate>
    </item>
    <item>
      <title>三个题，高手来帮忙！</title>
      <description>1、有3个水杯，分别标示为3升，4升和5升。其中有一个水杯比标示的值略高或略低，其它两个都很准确。你来到一个池塘边，如何确定是哪个杯子标示出了错？2、有3个盒子，其中一个放有奖品，另外两个是空的。有一...</description>
      <link>http://topic.csdn.net/u/20081010/13/5fbe0d76-2bbb-4220-ac8c-9a3117301ea2.html</link>
      <author>zhaolinger2</author>
      <pubDate>Fri, 10 Oct 2008 13:12:11 GMT</pubDate>
    </item>
    <item>
      <title>内蒙古宽带我世界</title>
      <description>关于内蒙古宽带我世界的，2008年10月7号以前，在网上下载了一个吉林的网通用户名转换工具，破解出了真实的用户名，使用WINDOS自带的拨号方式加上破解出的用户名可以上网，可是10月7日以后，这个用户...</description>
      <link>http://topic.csdn.net/u/20081011/10/981559dc-1200-4a61-8786-19084051ee5b.html</link>
      <author>xszdyh</author>
      <pubDate>Sat, 11 Oct 2008 10:46:47 GMT</pubDate>
    </item>
    <item>
      <title>经典书籍最新版！</title>
      <description>Modern Operating Systems (3rd Edition)by Andrew S. Tanenbaum Computer Networking: A Top-Down Approac...</description>
      <link>http://topic.csdn.net/u/20081002/15/ced4521a-0680-4cca-8009-9a13ed97da99.html</link>
      <author>bornunique</author>
      <pubDate>Thu, 02 Oct 2008 15:31:14 GMT</pubDate>
    </item>
    <item>
      <title>VLC编程，录像后播放的问题</title>
      <description>大家好啊！请教一个问题，谢谢！我在程序里用“--sout……”录制了视频以后，如果想再播放视频，就必须在命令行里面写“--sout #display”这样才可以重新播放视频，不这样写一次的话竟然播放会...</description>
      <link>http://topic.csdn.net/u/20081009/10/a8f54c50-8c25-44a5-be1d-3bb906c4f6f2.html</link>
      <author>kniferlv0</author>
      <pubDate>Thu, 09 Oct 2008 10:35:10 GMT</pubDate>
    </item>
    <item>
      <title>如何用DirectShow播放一个视频文件的同时叠加摄像头的视频，保存成一个视频文件（合二为一）？</title>
      <description>我在网上看到的大都是vc写的示例，看不明白，所以最好是使用 c#或vb.net 的如有高手提供解决方案，本人愿高分相送，适当的些许Money也可。</description>
      <link>http://topic.csdn.net/u/20081008/12/0047191d-003a-4869-af5f-6852736ed097.html</link>
      <author>wzuomin</author>
      <pubDate>Wed, 08 Oct 2008 12:24:20 GMT</pubDate>
    </item>
    <item>
      <title>如何判断两个区域交叉？</title>
      <description>如何判断两个或者多个不规则区域的交叉？如果交叉后应该怎么合并？然后将合并后的图形按路径输出？我现在是使用了CRgn,可以判断出交叉和输出。但是如果是使用CRgn,使用CRgn后读出的数据点的顺序应该怎...</description>
      <link>http://topic.csdn.net/u/20081007/10/da16131a-7f5f-48d4-a1ee-aded15025ed3.html</link>
      <author>woodywjl</author>
      <pubDate>Tue, 07 Oct 2008 10:39:12 GMT</pubDate>
    </item>
    <item>
      <title>关于vfw视频存储为avi文件的问题</title>
      <description>先前用directshow做过，src-&gt;compressor-&gt;avi mux -&gt;file writer，只是cpu太高(CPU3.0G,双核，占40%-50%，普通机器100%)转而用vfw作，...</description>
      <link>http://topic.csdn.net/u/20081010/10/fbbfd0b4-eda8-4db8-8df4-6355525ed2f6.html</link>
      <author>appearance</author>
      <pubDate>Fri, 10 Oct 2008 10:55:52 GMT</pubDate>
    </item>
    <item>
      <title>请问大家如何编写一个简单的人工智能程序</title>
      <description>大家好，小弟想请问一下，我想设计一个人工智能程序，应该怎么做呢？准备些什么?用什么语言编写？先谢谢了</description>
      <link>http://topic.csdn.net/u/20081011/08/8d2d7378-602e-4a38-994e-ceed9ee436b8.html</link>
      <author>hai0125</author>
      <pubDate>Sat, 11 Oct 2008 08:00:47 GMT</pubDate>
    </item>
    <item>
      <title>三维插值算法</title>
      <description>已知空间点（x，y，z）处的函数值，要得到其它点处的值，求三维插值的算法！</description>
      <link>http://topic.csdn.net/u/20081008/09/3898cd51-334f-4e39-ad92-cb0a27203f53.html</link>
      <author>zPare</author>
      <pubDate>Wed, 08 Oct 2008 09:55:58 GMT</pubDate>
    </item>
    <item>
      <title>发贴就能挣Google钱的贴吧</title>
      <description>发贴就能挣Google钱的贴吧创新思维贴吧：发贴就可以带上您的 Google Adsense 广告并获得相应的收益 注册用户只要进行简单的设置就可以在所发表的贴子中带上您的 Google Adsens...</description>
      <link>http://topic.csdn.net/u/20081011/01/19721b7f-f156-4631-b036-cbebc8cc5efb.html</link>
      <author>cz0004</author>
      <pubDate>Sat, 11 Oct 2008 01:11:04 GMT</pubDate>
    </item>
    <item>
      <title>关于VB下DirectSound9的问题</title>
      <description>检测到 LoaderLockMessage: DLL“C:\WINDOWS\assembly\GAC\Microsoft.DirectX\1.0.2902.0__31bf3856ad364e35\Mi...</description>
      <link>http://topic.csdn.net/u/20081011/05/9018db21-787b-4d2d-ac9e-9ea35df8cdc0.html</link>
      <author>vbfool</author>
      <pubDate>Sat, 11 Oct 2008 05:42:13 GMT</pubDate>
    </item>
    <item>
      <title>请教sourcefilter输出PIN的问题！</title>
      <description>我现在想实现一个简单的push sourcefilter来播放YV12的数据文件（只包含YV12的帧数据），有几个问题请教熟悉的大虾：1.  YV12能否直接被directshow 的renderfi...</description>
      <link>http://topic.csdn.net/u/20081010/17/003bd52e-cf41-41ab-b5cf-575330801759.html</link>
      <author>LinHanLao</author>
      <pubDate>Fri, 10 Oct 2008 17:24:42 GMT</pubDate>
    </item>
    <item>
      <title>惊了！彝族“摸奶节”女孩上街随便让人摸(图文)</title>
      <description>惊了！彝族“摸奶节”女孩上街随便让人摸(图文)彝族鬼节起源于哀牢山。在云南的各少数民族聚居地,每年阴历七月十四、十五、十六，正是送鬼的日子，也叫鬼节，因而也存在各种各样的神秘节日呢。楚雄彝族自治州双柏...</description>
      <link>http://topic.csdn.net/u/20081011/01/bb731d5d-efe5-4669-ae7b-1d038d712037.html</link>
      <author>cz0004</author>
      <pubDate>Sat, 11 Oct 2008 01:12:03 GMT</pubDate>
    </item>
    <item>
      <title>推荐—如何使用Premier下载最新平台的BIOS</title>
      <description>对于Intel即将发布的新平台，Intel内部和一些跟Intel签订了NDA的ISV会在发布前收到测试样机。内部称之为SDP.对于这些Alpha/Beta版的机器，我们需要不断地更新BIOS版本，因为...</description>
      <link>http://topic.csdn.net/u/20081007/10/73bebee8-d9e9-4ead-99c1-a935423f26f3.html</link>
      <author>lehedele</author>
      <pubDate>Tue, 07 Oct 2008 10:47:35 GMT</pubDate>
    </item>
    <item>
      <title>摇奖概率控制</title>
      <description>格数	奖品	中奖机率	多少次中一次	权重	1	A	0.01%	10000	        1	2	B	0.09%	1111	        9	3	C	0.30%	333	        30	4	D...</description>
      <link>http://topic.csdn.net/u/20081010/10/e2c8731a-9ba5-4025-8fa9-8227f6538526.html</link>
      <author>fjwzw</author>
      <pubDate>Fri, 10 Oct 2008 10:38:16 GMT</pubDate>
    </item>
    <item>
      <title>如何将x模型文件左手坐标系转为右手坐标系？</title>
      <description>如何将x模型文件左手坐标系转为右手坐标系？x模型文件默认的是左手坐标系 我要转为右手坐标系用什么工具转？Deep Exploration只能转左手</description>
      <link>http://topic.csdn.net/u/20081010/09/4d11cf2e-fab4-4e1d-87c3-35d04cb8cab4.html</link>
      <author>hhfh</author>
      <pubDate>Fri, 10 Oct 2008 09:04:29 GMT</pubDate>
    </item>
    <item>
      <title>两个看似简单的面试题</title>
      <description>1.给定一个单链链表（节点域只包括指向下一个的指针和key value），找出从链尾倒数的第k个元素，要求尽可能高效2.给定一个32bit的数值，如果输出比特位反转后的值，如对于4bit的二进制值10...</description>
      <link>http://topic.csdn.net/u/20081008/02/55997e5a-1f81-4a88-8c39-3518c806bb70.html</link>
      <author>Sodier</author>
      <pubDate>Wed, 08 Oct 2008 02:01:22 GMT</pubDate>
    </item>
    <item>
      <title>借这个地方向intel员工求助</title>
      <description>我想下载《软件优化技术》（第二版）（The Software Optimization Cookbook, Second Edition）一书的样例程序，用书上提供的地址：http://www.int...</description>
      <link>http://topic.csdn.net/u/20081010/23/1f3268a1-f0c1-4b85-90bf-e0c3999af12b.html</link>
      <author>normalnotebook</author>
      <pubDate>Fri, 10 Oct 2008 23:17:06 GMT</pubDate>
    </item>
    <item>
      <title>调用DirectX 声音,在当前的窗口失去焦点后,不能发出声音</title>
      <link>http://topic.csdn.net/u/20070727/09/f866b70d-0702-45f1-878e-b745b3018618.html</link>
      <author>zbw911</author>
      <pubDate>Fri, 27 Jul 2007 17:46:06 GMT</pubDate>
    </item>
    <item>
      <title>刚学数据结构~问道题</title>
      <description>试编写算法，计算i!*2^i(i=0,1,...n-1)的值并分别存入数组a[arrsize]的各个分量中。假设计算机中允许的整数最大值为MAXINT，则当n&gt;arrize或对某个k(0MAXINT时...</description>
      <link>http://topic.csdn.net/u/20081009/22/c723e1e0-aaa4-44c0-bde5-f83abdbab31f.html</link>
      <author>zdj2006</author>
      <pubDate>Thu, 09 Oct 2008 22:23:45 GMT</pubDate>
    </item>
    <item>
      <title>数据结构试题问题,请高手帮帮我</title>
      <description>以下算法的功能是清空带头结点的链队列Q。请在空缺处填入合适的内容，使其成为一个完整的算法:typedef struct node{      DataType data；struct node  *n...</description>
      <link>http://topic.csdn.net/u/20081010/20/6adcd1dc-23a7-43cc-96c0-1f3edc6c7293.html</link>
      <author>lionchen_2005</author>
      <pubDate>Fri, 10 Oct 2008 20:19:32 GMT</pubDate>
    </item>
    <item>
      <title>如此一个bmp图片,该如何读取上面的数字呢?</title>
      <link>http://topic.csdn.net/u/20071120/09/d8b6c3f5-496f-494f-8912-78c5fcd20690.html</link>
      <author>shhhx163</author>
      <pubDate>Tue, 20 Nov 2007 17:18:59 GMT</pubDate>
    </item>
    <item>
      <title>生物工程专业工作难找啊</title>
      <description>现在在工作真的是难找啊，真不知道用什么方法好，网上投也不行，现场招聘会也不行，报纸上打电话联系也不行，郁闷哦</description>
      <link>http://topic.csdn.net/u/20081010/16/868f197f-5770-4023-ad98-d9938653813b.html</link>
      <author>ljc86053</author>
      <pubDate>Fri, 10 Oct 2008 16:45:58 GMT</pubDate>
    </item>
    <item>
      <title>征求大家对人工智能的认识（机器对实体的认识、学习与记忆方面）</title>
      <description>[color=#FF0000]本帖不增分[/color]我的看法是：1.机器对实体的认识   首先可以像人一样区分人们所可以探测出的我们认为人类应该具有的各种实体世界内的光，声等最基础的元素（以人为标...</description>
      <link>http://topic.csdn.net/u/20081010/21/850fc6d6-cd7a-4ac7-81d0-e90f0eba7daf.html</link>
      <author>skyair624</author>
      <pubDate>Fri, 10 Oct 2008 21:06:43 GMT</pubDate>
    </item>
    <item>
      <title>急！飞鸽出问题了</title>
      <description>我的飞鸽传书为什么只能显示自己，只有别人刷新后，才能显示，而我一刷新就又只有我一个人了</description>
      <link>http://topic.csdn.net/u/20081010/20/b4050971-a0e3-4139-9046-2502f21a9a9b.html</link>
      <author>Windy_snowy</author>
      <pubDate>Fri, 10 Oct 2008 20:17:31 GMT</pubDate>
    </item>
    <item>
      <title>关于视频分割的问题</title>
      <description>请教下高手  有人了解视频分割技术吗？能讲解下视频分割技术在用途吗？  谢谢QQ联系也行  258589316</description>
      <link>http://topic.csdn.net/u/20081010/19/27911482-50bb-4e51-82fe-6f40d79c63c6.html</link>
      <author>vison511</author>
      <pubDate>Fri, 10 Oct 2008 19:27:58 GMT</pubDate>
    </item>
    <item>
      <title>怎么改变视频全屏播放时的鼠标指针？</title>
      <description>如题，通过传统的vc++里面的提示改变视频播放时在视频上移动的指针，没有办法实现，诸位有什么办法吗？</description>
      <link>http://topic.csdn.net/u/20081008/08/d8163cab-562d-44c4-8595-93bea315b12a.html</link>
      <author>yhw19850401</author>
      <pubDate>Wed, 08 Oct 2008 08:20:42 GMT</pubDate>
    </item>
    <item>
      <title>  ！1-1对应的定义！ </title>
      <link>http://topic.csdn.net/u/20080925/19/c53e522e-69fa-4fd8-b2d3-a9456da808e5.html</link>
      <author>zzwu</author>
      <pubDate>Fri, 26 Sep 2008 03:29:28 GMT</pubDate>
    </item>
    <item>
      <title>以项目为核心的商贸企业管理平台</title>
      <link>http://topic.csdn.net/u/20080919/17/b2cf4a0d-1018-46aa-bd96-9a3368671fc1.html</link>
      <author>chenbp</author>
      <pubDate>Sat, 20 Sep 2008 01:09:16 GMT</pubDate>
    </item>
    <item>
      <title>学图像处理要先学什么课程</title>
      <description>我想学图像处理,但拿过来最简单的图像处理书,里面都有看不懂的内容,请问图像处理的前导课程应学会什么?</description>
      <link>http://topic.csdn.net/u/20081002/08/9ef27f37-3682-4eae-9c2a-cb7df10c0e51.html</link>
      <author>zhang11wu4</author>
      <pubDate>Thu, 02 Oct 2008 08:02:50 GMT</pubDate>
    </item>
    <item>
      <title>树构造和遍历问题</title>
      <description>似乎树的构造也没有成功，但是就不知道哪里出错了#includeusing namespace std;typedef struct node{	int data;    node *lchild,*r...</description>
      <link>http://topic.csdn.net/u/20081010/16/4285488a-e959-4efd-98bd-4c4aea0ed707.html</link>
      <author>NCF_BJ</author>
      <pubDate>Fri, 10 Oct 2008 16:36:15 GMT</pubDate>
    </item>
    <item>
      <title>rtp传输压缩音频流的问题</title>
      <description>我是通过抓包工具把rtp传输的音频包抓了下来，然后已经把压缩的音频数据解出来了，有三种G711,G722,G728，但是解压缩的过程中是不是需要一些信息，比如比特率等，我要怎样从包里获得这些信息，这些...</description>
      <link>http://topic.csdn.net/u/20081010/10/e9ef7113-e8e1-412c-a51c-28e85a027551.html</link>
      <author>maisie0731</author>
      <pubDate>Fri, 10 Oct 2008 10:16:36 GMT</pubDate>
    </item>
    <item>
      <title>请问Bassclasses 在VS2005 Pocket Pc 编译流程，如何编译生成strmbase.lib?</title>
      <description>    如题，请问在VS2005下，如何编译适用于WINCE平台的（PPC架构）baseclassess生成strmbase.lib的库？    Directx 9.0给的baseclasses中有工...</description>
      <link>http://topic.csdn.net/u/20081010/10/5d29c016-ff69-48a5-a8ed-dfceb9c91df9.html</link>
      <author>blackdew</author>
      <pubDate>Fri, 10 Oct 2008 10:19:30 GMT</pubDate>
    </item>
    <item>
      <title>怎么不学编程就可以开发游戏呢？</title>
      <link>http://topic.csdn.net/u/20080502/14/e01dd794-92dc-4064-abd8-596819c5aa9f.html</link>
      <author>onej</author>
      <pubDate>Fri, 02 May 2008 22:45:30 GMT</pubDate>
    </item>
    <item>
      <title>关于XVID的编码解码黑屏问题</title>
      <description>最近在做一个使用XVID的视频聊天软件，这里假设本机为A,每当有其他客户机B请求A视频信息的时候，A就开一个新的逻辑线程并且在其中使用 xvid_encore(NULL, XVID_ENC_CREAT...</description>
      <link>http://topic.csdn.net/u/20081010/11/3c083127-a67b-456b-a7f6-0485ecf2746b.html</link>
      <author>rbcic</author>
      <pubDate>Fri, 10 Oct 2008 11:26:44 GMT</pubDate>
    </item>
    <item>
      <title>连续播放多个视频文件，两文件切换时播放窗口闪烁，怎么解决？</title>
      <description>播放多个视频文件（从数据库中实时读取文件名），在一个文件播放完后播放下一个文件时，窗口会闪烁，现象就跟播放窗口重新启动了一样，怎么解决啊？</description>
      <link>http://topic.csdn.net/u/20081010/16/fe137b73-d743-439a-8133-1116b7968585.html</link>
      <author>pksun</author>
      <pubDate>Fri, 10 Oct 2008 16:55:34 GMT</pubDate>
    </item>
    <item>
      <title>求一元多项式除法的算法</title>
      <description>求具体算法，谢谢</description>
      <link>http://topic.csdn.net/u/20081010/12/2684e7fe-3e62-402c-9068-2528f02fd604.html</link>
      <author>StuRun</author>
      <pubDate>Fri, 10 Oct 2008 12:10:48 GMT</pubDate>
    </item>
    <item>
      <title>InstallShield2009新增加了哪些功能？</title>
      <link>http://topic.csdn.net/u/20080925/15/16bb8228-2e3c-4e96-9d0d-9fbc2dbbf365.html</link>
      <author>meihaid</author>
      <pubDate>Thu, 25 Sep 2008 23:17:11 GMT</pubDate>
    </item>
    <item>
      <title>有向图的邻接表表示方法的转置问题</title>
      <description>我现在能想到的有效一点的方法就是用矩阵记录有向图的结构。然后再重新生成邻接表。还有没有比较有效一点的方法？</description>
      <link>http://topic.csdn.net/u/20081010/15/9811b4a6-11fb-499e-9809-bfe64841c6dc.html</link>
      <author>ustcfxx</author>
      <pubDate>Fri, 10 Oct 2008 15:25:37 GMT</pubDate>
    </item>
    <item>
      <title>现征集自愿测试者，测试我们的一个在线培训系统，有愿意参加的请按照下面格式填写信息</title>
      <description>姓名：电子邮箱：电话：报名截止日期，2008-10-10日下午5。30(修改下时间，之前写错了。这个系统是一个培训系统。参加测试的人员主要是能够集中一起体验并使用这个系统的功能。具体测试时间就在近期，...</description>
      <link>http://topic.csdn.net/u/20080918/23/a9ea53a2-23c7-434c-9076-382feea0d26f.html</link>
      <author>MAD_gxia</author>
      <pubDate>Fri, 19 Sep 2008 07:59:48 GMT</pubDate>
    </item>
    <item>
      <title>支持多核在linux下的调试工具？</title>
      <link>http://topic.csdn.net/u/20080925/15/2c2b3c60-b324-4aec-9f5e-b62181f1e5b8.html</link>
      <author>meihaid</author>
      <pubDate>Thu, 25 Sep 2008 23:13:02 GMT</pubDate>
    </item>
    <item>
      <title>嵌入式系统中的接口编程技术</title>
      <description>摘要：分析了嵌入式系统开发中常用的三种芯片编程方法，介绍了接口的标准、工作原理及在芯片中的实现，根据接口所提供的边界扫描功能，通过机并行接口模拟接口的时序，实现了使用目标系统中微处理器的接口对系统程序...</description>
      <link>http://topic.csdn.net/u/20081010/16/899ce0d6-7caf-478e-abf3-9bf176690d03.html</link>
      <author>kaifabanlyn</author>
      <pubDate>Fri, 10 Oct 2008 16:08:00 GMT</pubDate>
    </item>
    <item>
      <title>你如何看待编程语言</title>
      <link>http://topic.csdn.net/u/20080822/18/7f1d8e8d-b876-4d6c-8d36-16e83d2cd41d.html</link>
      <author>syk0208</author>
      <pubDate>Sat, 23 Aug 2008 02:13:03 GMT</pubDate>
    </item>
    <item>
      <title>二维数组怎么随机模拟迷宫</title>
      <description>制作随机迷宫地图，0和1实现，有且只有一条路径能够走到出口的，谁能给个算法能给个10*10矩阵的实现就更好了，谢谢</description>
      <link>http://topic.csdn.net/u/20081010/13/c60e5ed9-482c-4c24-9ad4-841162dc5924.html</link>
      <author>StuRun</author>
      <pubDate>Fri, 10 Oct 2008 13:06:34 GMT</pubDate>
    </item>
    <item>
      <title>后序遍历线索树和后序线索化二叉树</title>
      <description>请高手给一个后序遍历线索二叉树的算法和后序线索化二叉树的算法。。。。</description>
      <link>http://topic.csdn.net/u/20081008/22/c85fb1ba-84db-4f34-b078-134843c46c4f.html</link>
      <author>nandizhu</author>
      <pubDate>Wed, 08 Oct 2008 22:44:10 GMT</pubDate>
    </item>
    <item>
      <title>intel/AMD</title>
      <description>最近在网上看到，AMD的一些子公司被其他公司并掉，可能跟金融危机有关；那现在如果AMD出现人们不可预料的事情发生(假如说倒闭，破产)intel是不是成为全球惟一的cpu制造商啦；而且intel以后的发...</description>
      <link>http://topic.csdn.net/u/20081010/14/ea646cfc-c9ad-4ab4-8d08-e7034bcf7ba1.html</link>
      <author>dengjianbo</author>
      <pubDate>Fri, 10 Oct 2008 14:35:56 GMT</pubDate>
    </item>
    <item>
      <title>如何才能把outlook express的通讯薄共享</title>
      <description>我用网络邮箱做服务器.想把OUTLOOK EXPRESS里面把我的通讯方式共享给别人.哪位高手能告诉我步骤.小生谢了.</description>
      <link>http://topic.csdn.net/u/20081010/13/d79276ac-94f3-4b26-826a-ed89349b676c.html</link>
      <author>au86043638</author>
      <pubDate>Fri, 10 Oct 2008 13:42:34 GMT</pubDate>
    </item>
    <item>
      <title>求虚函数的用法？</title>
      <description>虚函数</description>
      <link>http://topic.csdn.net/u/20081005/11/5069e852-85d0-449c-a9d6-2d3da92bf8be.html</link>
      <author>GGPPRRSS88223311</author>
      <pubDate>Sun, 05 Oct 2008 11:42:23 GMT</pubDate>
    </item>
    <item>
      <title>马踏棋盘，无法顺利走完~~谢谢了</title>
      <description>这个是我写的马踏棋盘，运行时，输入不同的点，终止的点的序号不一样，而且while循环没有结束，就强制退出了？请问是哪里出问题了？谢谢了~#include#include#define N 8#defi...</description>
      <link>http://topic.csdn.net/u/20081009/23/8d4207c9-2d47-4b4d-8583-cb19fa68b75d.html</link>
      <author>ogiso_pest</author>
      <pubDate>Thu, 09 Oct 2008 23:25:40 GMT</pubDate>
    </item>
    <item>
      <title>图像模板匹配的定位算法，如何快速计算角度？</title>
      <description>有价值的建议，方法都有分。</description>
      <link>http://topic.csdn.net/u/20081006/21/e7822f2c-13f7-4c6f-be42-ec59c5354b2d.html</link>
      <author>youwill</author>
      <pubDate>Mon, 06 Oct 2008 21:27:21 GMT</pubDate>
    </item>
    <item>
      <title>当月最有价值帖子评选火热登场！——100可用分拿回家</title>
      <link>http://topic.csdn.net/u/20080924/16/b7384e7e-0974-485e-8d25-4d50186ddd8c.html</link>
      <author>zhaxd</author>
      <pubDate>Thu, 25 Sep 2008 00:25:46 GMT</pubDate>
    </item>
    <item>
      <title>外包图像识别</title>
      <description>1. 可以做人脸识别，随机样本能达到80%的识别率； 2. 可以做人脸检测，随机的样本能达到80%的识别率； 3. 基于静态图像的人脸检测与识别4. 开发语言及工具自选,但要便于我们在此基础上进行二次...</description>
      <link>http://topic.csdn.net/u/20081006/14/df1f8ca3-cc48-417c-b942-a8c64633fce2.html</link>
      <author>jciwolf</author>
      <pubDate>Mon, 06 Oct 2008 14:20:20 GMT</pubDate>
    </item>
    <item>
      <title>avi文件播放问题</title>
      <description>我将264的文件使用avi系统函数（vc6.0环境下）转换生成了一个avi文件，帧设置为等帧长，使用（音频帧长*音频帧数＝视频帧长*视频帧数）来控制音视频同步的，可是为什么生成出来的文件使用media...</description>
      <link>http://topic.csdn.net/u/20081010/09/0ef144da-69ca-47d5-9df5-1e5e9f1d382d.html</link>
      <author>wind2kite</author>
      <pubDate>Fri, 10 Oct 2008 09:22:44 GMT</pubDate>
    </item>
    <item>
      <title>不等长数组的组合遍历算法</title>
      <description>    将20个数字分成数字个数不相等的6行，然后在每一行里抽出0最少0个，最多2个数字，总共抽出5个组成一组数据。    求所有可能组合的算法。    有一个方法是首先生成20选5的全排列，然后再根...</description>
      <link>http://topic.csdn.net/u/20081009/13/23dab817-3dc6-410f-b169-c9b390f83b50.html</link>
      <author>dreamdiary</author>
      <pubDate>Thu, 09 Oct 2008 13:20:26 GMT</pubDate>
    </item>
    <item>
      <title>超长2进制数串转换为10进制数```````</title>
      <description>看了一道题目最长达到3000位的2进制数 转换为 10进制数这样的算法该如何写? 复杂吗?</description>
      <link>http://topic.csdn.net/u/20081007/20/4c270c1a-d170-4fab-a3f8-7585a7bb86b4.html</link>
      <author>sapala____</author>
      <pubDate>Tue, 07 Oct 2008 20:25:43 GMT</pubDate>
    </item>
    <item>
      <title>一个简单的MFC问题</title>
      <description>IsKindof()包含在DECLARE_DYNCREATE宏中吗?</description>
      <link>http://topic.csdn.net/u/20081009/23/4d1e8900-08bd-4245-86fd-b05807b1697c.html</link>
      <author>liangneo</author>
      <pubDate>Thu, 09 Oct 2008 23:48:26 GMT</pubDate>
    </item>
    <item>
      <title>动态链表问题：error LNK2001: unresolved external symbol "void __cdecl InsertNode(struct Node *)" (?InsertNode@@YAXPAUNode@@@Z) </title>
      <description>小弟想用动态链表实现插入删除的操作，但编译以下代码候总出现error LNK2001: unresolved external symbol "void __cdecl InsertNode(stru...</description>
      <link>http://topic.csdn.net/u/20081009/16/c2222d3e-cc1e-4be6-8dc1-8b6761c21c74.html</link>
      <author>qucooln</author>
      <pubDate>Thu, 09 Oct 2008 16:37:57 GMT</pubDate>
    </item>
    <item>
      <title>我对陆其明其人的看法，同意的近来顶一下。</title>
      <link>http://topic.csdn.net/u/20070315/18/94853024-5abe-4d14-8510-bf0adfa05657.html</link>
      <author>rzjkl1980</author>
      <pubDate>Fri, 16 Mar 2007 02:13:04 GMT</pubDate>
    </item>
    <item>
      <title>用WINPCAP计算的网络上包的速率问题？</title>
      <description>想要计算网络上每一个数据包的速率，按照这样的思路：   使用的是WINPCAP的接口，在PCAP_LOOP上每次收到一个包的时候，在回调函数中取出他的时间戳，下次再收到包再取出时间戳，用两次时间戳之差...</description>
      <link>http://topic.csdn.net/u/20081010/10/4ff0d185-1f38-47b2-bcd5-aaf24d5a9709.html</link>
      <author>Jieding</author>
      <pubDate>Fri, 10 Oct 2008 10:44:34 GMT</pubDate>
    </item>
    <item>
      <title>关于开发调节 bmp 图片亮度和对比度工具遇到的到 问题。</title>
      <description>目前开发中遇到这样的 一个 需求：同一张bmp图片在不同的机器上（嵌入式到设备）显示出来的效果有些偏差，如有些看起来会比较暗，有些比较亮，甚至有些机器上会“变色”。这些比较都是跟pc机进行的，因为图片...</description>
      <link>http://topic.csdn.net/u/20081004/01/7c820a4e-1e1c-4d51-9233-2b3e6c6a239f.html</link>
      <author>wzjall</author>
      <pubDate>Sat, 04 Oct 2008 01:23:02 GMT</pubDate>
    </item>
    <item>
      <title>用fisher线性判断准则 判断 特征 的问题</title>
      <description>[img=http://pc.images22.51img1.com/6000/jjrclb/c1f505c21a9d47d745b790d05829a04a.jpg][/img]就是这个问题,小弟我...</description>
      <link>http://topic.csdn.net/u/20081009/09/72f16869-7731-459d-af20-2bbce0fa44b9.html</link>
      <author>cuilinbi</author>
      <pubDate>Thu, 09 Oct 2008 09:07:06 GMT</pubDate>
    </item>
    <item>
      <title>关于dshow的句柄泄漏问题!</title>
      <link>http://topic.csdn.net/u/20070417/09/aab3488a-1232-4ea4-a8e4-e3a1e13040e0.html</link>
      <author>xjkiller</author>
      <pubDate>Tue, 17 Apr 2007 17:18:36 GMT</pubDate>
    </item>
    <item>
      <title>_lseek(file_handle,-(int)(bitmap-&gt;bitmapinfoheader.biSizeImage),SEEK_END);什么意思</title>
      <description>这是《widows游戏编程大师技巧》的一条语句，谁能帮忙解释一下，感激不尽</description>
      <link>http://topic.csdn.net/u/20081009/22/17be8878-497c-435a-bee6-a664a2fd50f4.html</link>
      <author>mz750</author>
      <pubDate>Thu, 09 Oct 2008 22:42:17 GMT</pubDate>
    </item>
    <item>
      <title>x509证书如何添加扩展信息？</title>
      <description>公司领导一定要加些自定义的信息到证书里，目前的方法是想在扩展字段里选一个，放自定义的信息。比如：subjectAltName, certificatePolicies等扩展字段，应该是可以替换的。但执...</description>
      <link>http://topic.csdn.net/u/20081010/09/4b557d38-9629-44ed-90ae-f6d91f63ff5a.html</link>
      <author>qiandayong</author>
      <pubDate>Fri, 10 Oct 2008 09:28:58 GMT</pubDate>
    </item>
    <item>
      <title>栈和队列</title>
      <description>如何区分栈和队列中的插入和删除，对于遍历如何书写这个函数</description>
      <link>http://topic.csdn.net/u/20081009/18/2a4e20e2-ba46-4793-86cc-2fa9d3b3ac79.html</link>
      <author>fanguanggao</author>
      <pubDate>Thu, 09 Oct 2008 18:32:47 GMT</pubDate>
    </item>
    <item>
      <title>迅雷看看缓存文件是什么格式？能否转换为可以播放的视频文件？</title>
      <description>使用新版的迅雷看看之后，会在硬盘可用空间最大的分区根目录下生成一个隐藏文件夹 vod_cache_data 里面是在线看过的视频的缓存文件，一个视频在一个文件夹里面，但是缓存不是一个单个文件，而是许多...</description>
      <link>http://topic.csdn.net/u/20081010/09/f048964b-aa41-4d69-a175-f6ec2b347e63.html</link>
      <author>wukong1981</author>
      <pubDate>Fri, 10 Oct 2008 09:01:38 GMT</pubDate>
    </item>
    <item>
      <title>哪里有下载reportmachine破解软件</title>
      <description>reportmachine破解软件：谢谢</description>
      <link>http://topic.csdn.net/u/20081010/09/9d8363f3-5e99-4fb9-a5f7-42cd4c067720.html</link>
      <author>pawaluodi33</author>
      <pubDate>Fri, 10 Oct 2008 09:00:46 GMT</pubDate>
    </item>
    <item>
      <title>请问网页链接拨打电话怎么实现呢?</title>
      <description>比如一个网站客服上面有个"免费电话"链接,访问者点击这个链接,输入接听的电话号码 就可以和网站客服 通话了  这怎么实现呢?  网站客服也是用电话手机接听的.</description>
      <link>http://topic.csdn.net/u/20081002/11/1157f6c8-0338-4973-9d04-95398281adaa.html</link>
      <author>life923</author>
      <pubDate>Thu, 02 Oct 2008 11:15:29 GMT</pubDate>
    </item>
    <item>
      <title>在可比语库中发现新的名词解释</title>
      <description>这样的，想知道，如何在新闻报道中确定或者说发现新的名词。（也就是说，确定网页上新闻语料库中新闻文章里新的英文名字和在第二语言中他们的翻译。在同一天两种语言新闻文章可被视为比较文字。  ）可以用什么样的...</description>
      <link>http://topic.csdn.net/u/20081010/08/618c89e7-fed9-498c-b08d-252ebbe43928.html</link>
      <author>yiqitouxigua</author>
      <pubDate>Fri, 10 Oct 2008 08:51:19 GMT</pubDate>
    </item>
    <item>
      <title>Hlsl内建纹理对象</title>
      <description>hlsl内建纹理对象有哪些可以访问的数据成员?</description>
      <link>http://topic.csdn.net/u/20081009/23/e46793b2-f1f7-4dd3-99db-309c980ce1bb.html</link>
      <author>liangneo</author>
      <pubDate>Thu, 09 Oct 2008 23:45:44 GMT</pubDate>
    </item>
    <item>
      <title>有一个整形数组，其元素包含正整数和负整数，找到它的所有子集中元素之和最大的那个子集。</title>
      <description>有一个整形数组，其元素包含正整数和负整数，找到它的所有子集中元素之和最大的那个子集。如：[12,-3,54,-42,4,5,7]，结果为63[12,-3,54]。要求复杂度为O(n)。</description>
      <link>http://topic.csdn.net/u/20080929/14/d60cf911-e728-4445-a780-e848a27a6d41.html</link>
      <author>cutesky</author>
      <pubDate>Mon, 29 Sep 2008 14:55:05 GMT</pubDate>
    </item>
    <item>
      <title>10mbps 和100mbps 之间通信的问题？</title>
      <description>请问一下，当10mbps网卡和100mbps的交换机可否实现通信？还有就是有10mbps/100mbps自适应的网卡，请问下，网卡是怎样实现自适应的？谢谢了。请各位高手多多帮助！</description>
      <link>http://topic.csdn.net/u/20080928/22/5e76749d-d390-48d7-a23f-922b8a1b5431.html</link>
      <author>gaoqijie</author>
      <pubDate>Sun, 28 Sep 2008 22:46:39 GMT</pubDate>
    </item>
    <item>
      <title>intel免费书如何查询邮寄？？</title>
      <description>申请后intel给我发了确认邮件，但是给的一个订单号是去哪里查询的呢？？？ 订单号是：5185440</description>
      <link>http://topic.csdn.net/u/20081009/22/2d2b4a29-3173-4c26-8e0e-d2048a723c88.html</link>
      <author>zhangyangjing</author>
      <pubDate>Thu, 09 Oct 2008 22:07:02 GMT</pubDate>
    </item>
    <item>
      <title>水印算法相关</title>
      <description>请问普通的2进制文件能用水印算法加密么？？？兄弟想把文件用水印算法加密～～</description>
      <link>http://topic.csdn.net/u/20081009/20/0984f0ad-a713-4661-89cd-d939a8cddb9b.html</link>
      <author>kobewang1234</author>
      <pubDate>Thu, 09 Oct 2008 20:52:21 GMT</pubDate>
    </item>
    <item>
      <title>Openmp 多线程并行计算。为什么结果每次run出来不一样？</title>
      <description>各位，我遇到下面这样一个问题，困扰很久没有解决。不知哪位可以慷慨赐教？我用了两个线程把计算任务分为相互独立的两个部分。分别完成之后把结果合并成为完整的结果。但两个部分内部的语句，如 do while....</description>
      <link>http://topic.csdn.net/u/20081009/12/bf5b19ef-c251-4d20-856a-7f04ef395dd7.html</link>
      <author>janeyxm</author>
      <pubDate>Thu, 09 Oct 2008 12:10:32 GMT</pubDate>
    </item>
    <item>
      <title>有哪些支持VLIW的模拟器？？</title>
      <description>不知道目前有哪些模拟器可以支持VLIW结构的，能否做个比较呢？？</description>
      <link>http://topic.csdn.net/u/20081009/21/03090eba-bff3-475a-b0c7-0b96917d3d70.html</link>
      <author>Julia_li_2007</author>
      <pubDate>Thu, 09 Oct 2008 21:27:38 GMT</pubDate>
    </item>
    <item>
      <title>支持多核的编译器有哪些？</title>
      <description>   虽然多核已成为一个大的趋势，且也有商品化产品上市，不过多核的能力应该还没完全展现。相应的编译器不知道做到何种程度，目前都有那几款编译器能够支持多核？？请大家指点下吧？？</description>
      <link>http://topic.csdn.net/u/20081009/21/edf13065-50b3-4665-8cc2-32f3df530a7b.html</link>
      <author>Julia_li_2007</author>
      <pubDate>Thu, 09 Oct 2008 21:25:42 GMT</pubDate>
    </item>
    <item>
      <title>希尔排序为什么是不稳定的呢 ？</title>
      <description>希尔排序为什么是不稳定的呢 ？例子 3   5  10  8  7  2  8  1  20  6d=2 分成2组  （3  10  7  8  20） 和（5  8  2  1  6） 第一组的8在...</description>
      <link>http://topic.csdn.net/u/20081008/16/7bfe0273-45bc-4507-9f3e-9d99fc2ea96d.html</link>
      <author>zouqingqiu</author>
      <pubDate>Wed, 08 Oct 2008 16:40:01 GMT</pubDate>
    </item>
    <item>
      <title>请教如何用AES和SHA1实现数据传输机密性和完整性</title>
      <description>请教各位一个弱智问题：一段数据M要从A发送到B，怎样在传输过程中同时保证机密性和完整性？不用公钥/私钥，可用SHA-1和AES,假设A、B都有一个预装的相同的密钥库，可用ID从中取得密钥。我想的是：A...</description>
      <link>http://topic.csdn.net/u/20080930/18/cde73eb7-4d50-48fb-8bad-c0778247ac62.html</link>
      <author>zhangsanonline</author>
      <pubDate>Tue, 30 Sep 2008 18:16:40 GMT</pubDate>
    </item>
    <item>
      <title>搜索引擎中索引库的数据分布策略的问题</title>
      <description>本人最近做毕业设计时遇到1个数据分布策略的问题，希望高手指教Q:数据服务器中已经有大量处理好的数据，应该用什么数据分布策略把数据分布到多个索引服务器上，从而可以承载大量用户的搜索？注：本人的想法是根据...</description>
      <link>http://topic.csdn.net/u/20081008/21/81161fbb-d566-4a29-8291-a7719a302a78.html</link>
      <author>bensharp</author>
      <pubDate>Wed, 08 Oct 2008 21:04:27 GMT</pubDate>
    </item>
    <item>
      <title>关于光枪编程的问题，本以为使用DInput即可，没想到似乎不行。。。求助！</title>
      <description>关于光枪编程的问题，本以为使用DInput即可，没想到似乎不行。。。求助！如何得到光枪的输入？就是topgun。使用DInput不行，光枪不是游戏杆，似乎是一个USB外设。我看了光枪自带的程序，似乎使...</description>
      <link>http://topic.csdn.net/u/20081008/23/a0443e48-9c31-4545-b66f-923199d7dd39.html</link>
      <author>madmanahong</author>
      <pubDate>Wed, 08 Oct 2008 23:30:13 GMT</pubDate>
    </item>
    <item>
      <title>用VC++如何画这个图？！</title>
      <description>0区：(293，303)；(317，303)；(368，276）；(368，258)；(318，256)；(293，272)；(293，303) 1区：X=116 to 308；Y=460- 172....</description>
      <link>http://topic.csdn.net/u/20081009/18/bf84a83c-8f04-4c3b-be55-51a538aad8b7.html</link>
      <author>caoqing406</author>
      <pubDate>Thu, 09 Oct 2008 18:14:11 GMT</pubDate>
    </item>
    <item>
      <title>成都职场－视音频算法工程师</title>
      <description>联系电话：028-66843045 MSN:yora_huang@hotmail.com Email：y287966@vastsea.com招聘职位： 二、视音频算法工程师  （工作地点：成都）  职...</description>
      <link>http://topic.csdn.net/u/20081007/14/d15ef07e-24c9-45a0-828e-8a2b18d0e91f.html</link>
      <author>yora_huang</author>
      <pubDate>Tue, 07 Oct 2008 14:39:58 GMT</pubDate>
    </item>
    <item>
      <title>directx9 sdk march 2008 中找不到rmxfguid.h，x文件模板宏在哪里定义的？</title>
      <description>directx9 sdk march 2008 中找不到rmxfguid.h，x文件模板宏在哪里定义的？或者说directx9 sdk march 2008中对于x文件模板宏是怎么解决的？在devel...</description>
      <link>http://topic.csdn.net/u/20081009/18/e9633023-bdd7-4052-8c2c-865f4ba2d6db.html</link>
      <author>superpop123</author>
      <pubDate>Thu, 09 Oct 2008 18:05:10 GMT</pubDate>
    </item>
    <item>
      <title>请教一个关于指定winpcap抓取指定方向数据包的问题</title>
      <description>    我的问题是：用winpcap编程有没有办法实现只抓从某个网口进来或出去的包？或者有没有别的办法在程序中实现同样的功能？以下是我程序的实现环境和问题，写得比较多，但高手应该一目了然。谢谢！---...</description>
      <link>http://topic.csdn.net/u/20081009/11/94d3ab04-3a57-4bea-980d-beb981860dbc.html</link>
      <author>mingzihua</author>
      <pubDate>Thu, 09 Oct 2008 11:50:08 GMT</pubDate>
    </item>
    <item>
      <title>常见排序算法用FLASH实现演示  我的一个毕业设计 不知道该怎么做！有没有人和我做相同的设计啊！</title>
      <description>现在设计做了一半 实在没法弄 伤脑筋死了。。论文也不知道能怎么写！！大家帮帮我把</description>
      <link>http://topic.csdn.net/u/20081008/13/241f9310-47f2-4a49-bcf3-af845844364f.html</link>
      <author>lwbin0123</author>
      <pubDate>Wed, 08 Oct 2008 13:28:25 GMT</pubDate>
    </item>
    <item>
      <title>求DRM SDK 10~!!</title>
      <link>http://topic.csdn.net/u/20070514/14/8ae43da4-35a4-42ae-9088-63ab2fd85185.html</link>
      <author>chimeilong</author>
      <pubDate>Mon, 14 May 2007 22:55:16 GMT</pubDate>
    </item>
    <item>
      <title>为什么我发100个字符却收到104个</title>
      <description>使用TCP/IP协议,SOCKET通信        char *buf = new char[100];        strcpy(buf,"工作站连接成功。——发往服务器的消息。");     ...</description>
      <link>http://topic.csdn.net/u/20081004/04/b4474283-72fe-4b3c-930e-c4e1231b85be.html</link>
      <author>lelefox</author>
      <pubDate>Sat, 04 Oct 2008 04:43:24 GMT</pubDate>
    </item>
    <item>
      <title>https加密传输，ssl证书的获得方法</title>
      <link>http://topic.csdn.net/u/20080827/12/5bfd9440-ab0c-4024-8409-7fe8ceb9ed9b.html</link>
      <author>shishi1234</author>
      <pubDate>Wed, 27 Aug 2008 20:13:09 GMT</pubDate>
    </item>
    <item>
      <title>换网卡之后AMT不可用了</title>
      <description>大家好！我之前把AMT配置成SMB模式，并且能够通过WebUI访问的，但是现在换了一块网卡之后，就不能通过WebUI访问了。开始以为是需要从新设置，可是重新设置，并且断电之后再重起还是不能用了，谁知道...</description>
      <link>http://topic.csdn.net/u/20081009/15/c19dde69-c344-41e1-b3d7-8d27b38ce15e.html</link>
      <author>azu6658068</author>
      <pubDate>Thu, 09 Oct 2008 15:47:17 GMT</pubDate>
    </item>
    <item>
      <title>vtune中测试的事件</title>
      <link>http://topic.csdn.net/u/20080924/11/9fc818f0-df57-4b1c-a4be-f0c1585fa8cb.html</link>
      <author>chenjia3341260</author>
      <pubDate>Wed, 24 Sep 2008 19:05:53 GMT</pubDate>
    </item>
    <item>
      <title>IPP中的矩阵乘函数</title>
      <description>我是菜鸟，目前在做SSE优化方面的内容，想用SSE矩阵乘和IPP中的矩阵乘函数比较下性能，请问下各位高手，IPP中的矩阵乘函数在哪个库中，怎么调用呢？</description>
      <link>http://topic.csdn.net/u/20081009/00/b1fca86a-03d0-447c-ba40-363c6c0de6fb.html</link>
      <author>henrylrc</author>
      <pubDate>Thu, 09 Oct 2008 00:22:15 GMT</pubDate>
    </item>
    <item>
      <title>学习递归感觉好难！！</title>
      <link>http://topic.csdn.net/u/20080924/23/2f23c6a9-8187-4dbd-b7a3-69e73ae91033.html</link>
      <author>lsrj</author>
      <pubDate>Thu, 25 Sep 2008 07:23:35 GMT</pubDate>
    </item>
    <item>
      <title>公司邮件安全问题</title>
      <description>公司邮件安全问题为了保护公司邮件的机密,如何实现以下功能的邮箱服务?1,邮箱帐户只能在公司内网里面使用,出了公司在外网就不能用,2,当公司内部的邮件服务器出现了故障,会自动把发过来的邮件用另外一个邮箱...</description>
      <link>http://topic.csdn.net/u/20081008/17/8e677e6c-915c-438b-9ea2-192b83fff481.html</link>
      <author>ehongming</author>
      <pubDate>Wed, 08 Oct 2008 17:16:10 GMT</pubDate>
    </item>
    <item>
      <title>两道笔试题，大家来看看怎么算啊</title>
      <description>由 3 个 a ， 5 个 b 和 2 个 c 构成的所有字符串中，包含子串“ abc ”的共有多少个？？？一个递归函数如下：f(x)=x (x&lt;=1);f(x)=（2002*f(x-1) + 200...</description>
      <link>http://topic.csdn.net/u/20080929/11/a4f29e35-0df7-4463-88c5-8f2ecd50adb0.html</link>
      <author>cmckliao</author>
      <pubDate>Mon, 29 Sep 2008 11:16:24 GMT</pubDate>
    </item>
    <item>
      <title>mac地址的通信问题</title>
      <description>某局域网，用2层交换机相连，IP地址为192.168.1.X，网关为192.168.1.1； 现有一台电脑Y加入该局域网，IP地址为192.168.2.Y，网关为192.168.2.1，mac地址也知...</description>
      <link>http://topic.csdn.net/u/20081008/17/5c9ddb32-6819-43f1-853e-9e8d28129f2f.html</link>
      <author>hgterry</author>
      <pubDate>Wed, 08 Oct 2008 17:27:51 GMT</pubDate>
    </item>
    <item>
      <title>理发师问题，有兴趣的进来讨论下</title>
      <link>http://topic.csdn.net/u/20080819/21/453f5762-ab8e-4698-a0c6-ead6a1b06387.html</link>
      <author>studyboyz</author>
      <pubDate>Wed, 20 Aug 2008 05:53:15 GMT</pubDate>
    </item>
    <item>
      <title>运行程序的时候出现 “应用程序错误”</title>
      <description>我用source insight编写C程序。在桌面上建立了一个project的快捷方式。昨天还没事儿。今天早晨一启动快捷方式的时候就出现应用程序错误。如下显示“0x00432f86”指令引用的 “0x...</description>
      <link>http://topic.csdn.net/u/20081009/11/28841638-d89b-43b8-b051-1de232dbd5cf.html</link>
      <author>wanangel29</author>
      <pubDate>Thu, 09 Oct 2008 11:03:52 GMT</pubDate>
    </item>
    <item>
      <title>请教大家我的程序为什么网络接收不稳定？</title>
      <description>最近写了个网络传送文件的小程序,运行在ARM uclinux下，发觉有时候传送很快，有时候传送奇慢无比，隔几秒钟才能收到192Bytes,接收端代码如下： typedef struct tagPACK...</description>
      <link>http://topic.csdn.net/u/20081007/09/3b7d5597-722e-48bf-b5f8-cde9a6d6bc78.html</link>
      <author>Jungson</author>
      <pubDate>Tue, 07 Oct 2008 09:55:09 GMT</pubDate>
    </item>
    <item>
      <title>ABCDEF六城市两两相连，问从A到B经过其他城市有且只有一次的路径有多少个</title>
      <description>RT!</description>
      <link>http://topic.csdn.net/u/20081008/10/6b726d6d-94b8-4c02-9289-e4b222c853f5.html</link>
      <author>zouqingqiu</author>
      <pubDate>Wed, 08 Oct 2008 10:41:09 GMT</pubDate>
    </item>
    <item>
      <title>音频,视频同时存在的时候,deliver 视频时会停止在那里</title>
      <description>只有视频时，没有问题。有音频时，deliver VideoFrame 时会停止在那里，这时整个graph中filter的状态为Pause， 音视频均无时间戳。Video，Audio decoder 是...</description>
      <link>http://topic.csdn.net/u/20081008/22/6872ba2c-71bc-4521-a406-4f0380aba484.html</link>
      <author>midtree</author>
      <pubDate>Wed, 08 Oct 2008 22:51:36 GMT</pubDate>
    </item>
    <item>
      <title>藏拙贴吧现开始招聘贴吧管理员和吧主</title>
      <description>[color=#FF6600][size=18px] 	藏拙贴吧现开始招聘贴吧管理员和吧主管理员主要权限:1、任免吧主2、任何吧的贴子删除、置顶、加精的权限3、分享贴吧的广告收益吧主主要权限:1、封锁...</description>
      <link>http://topic.csdn.net/u/20081009/09/8589c47e-08d7-4b93-a4e7-9d684b806963.html</link>
      <author>tengyunjiawu_org</author>
      <pubDate>Thu, 09 Oct 2008 09:39:18 GMT</pubDate>
    </item>
    <item>
      <title>上贴无人能答,这次 再次加分,  求SQL语句, 请大侠指教! 急!</title>
      <description>TabA  （主表） Number  Name  age 0       Yang    2 1       Li      3 2       Xu      6 TabB  (从表) BookNu...</description>
      <link>http://topic.csdn.net/u/20081008/20/17a306d9-8e28-44b8-bda9-d85439925ade.html</link>
      <author>yanglin1228</author>
      <pubDate>Wed, 08 Oct 2008 20:38:08 GMT</pubDate>
    </item>
    <item>
      <title>请教 realplayer 播放 rtsp 的问题</title>
      <link>http://topic.csdn.net/u/20080926/12/681b96f4-a3a2-45f1-8e9b-b92eb4de03be.html</link>
      <author>totozii</author>
      <pubDate>Fri, 26 Sep 2008 20:20:47 GMT</pubDate>
    </item>
    <item>
      <title>怎么判断发出的邮件对方是否阅读?</title>
      <description>根据smtp协议,我写了邮件的发送程序.发送基本正常.可是我怎么判断发出的邮件别人已经阅读了呢?</description>
      <link>http://topic.csdn.net/u/20081009/09/5eda01bc-8ee7-4492-8bed-5e0d41a856cd.html</link>
      <author>charlimoon</author>
      <pubDate>Thu, 09 Oct 2008 09:13:02 GMT</pubDate>
    </item>
    <item>
      <title>寻求S3C2440 + WinCE 环境下播放CMMB电视图像数据的播放器软件。</title>
      <description>寻求S3C2440 + WinCE 环境下播放CMMB电视图像数据的播放器软件。gaotongqiang@mitgroup.com.cn  6382778@163.com 13356386898 </description>
      <link>http://topic.csdn.net/u/20081009/09/f4dc2c2e-01d2-421d-a747-62938b2ff46f.html</link>
      <author>gaotq0</author>
      <pubDate>Thu, 09 Oct 2008 09:11:57 GMT</pubDate>
    </item>
    <item>
      <title>寻求S3C2440 + WinCE 环境下播放CMMB电视图像数据的播放器软件。</title>
      <description>寻求S3C2440 + WinCE 环境下播放CMMB电视图像数据的播放器软件。gaotongqiang@mitgroup.com.cn  6382778@163.com 13356386898 </description>
      <link>http://topic.csdn.net/u/20081009/09/542c832b-da0d-4b58-81ad-2a905c555f8d.html</link>
      <author>gaotq0</author>
      <pubDate>Thu, 09 Oct 2008 09:11:33 GMT</pubDate>
    </item>
    <item>
      <title>多核学习指南：入门级</title>
      <link>http://topic.csdn.net/u/20080923/14/3e4b87e2-2ef1-41d1-a284-27aded3c0de6.html</link>
      <author>majiajun_no_5</author>
      <pubDate>Tue, 23 Sep 2008 22:16:47 GMT</pubDate>
    </item>
    <item>
      <title>大家帮忙推荐几本网络安全的资料！</title>
      <link>http://topic.csdn.net/u/20080925/20/e93abfc7-317b-4c72-94e7-4297b7b7894e.html</link>
      <author>rifhgd</author>
      <pubDate>Fri, 26 Sep 2008 04:19:57 GMT</pubDate>
    </item>
    <item>
      <title>0分帖子~~~</title>
      <description>0</description>
      <link>http://topic.csdn.net/u/20081008/23/72673708-5804-40a5-8b9c-e6e3ec7bc8b3.html</link>
      <author>lhzl2001</author>
      <pubDate>Wed, 08 Oct 2008 23:00:51 GMT</pubDate>
    </item>
    <item>
      <title>赚分，马上结...</title>
      <description>0</description>
      <link>http://topic.csdn.net/u/20081008/22/898449f9-10be-4993-888e-95dfe0358da9.html</link>
      <author>cucurbit</author>
      <pubDate>Wed, 08 Oct 2008 22:56:11 GMT</pubDate>
    </item>
    <item>
      <title>.net下关于创建opengl控件的问题</title>
      <link>http://topic.csdn.net/u/20080926/10/c5b10faa-0e4a-41b8-9df6-27af2c4d4364.html</link>
      <author>forebeacher</author>
      <pubDate>Fri, 26 Sep 2008 18:18:07 GMT</pubDate>
    </item>
    <item>
      <title>intel 多核处理器上有哪些性能监测的硬件支持</title>
      <description>如题 有没有大侠告诉我有哪些硬件支持 记录的是什么信息 也就是说有哪些counter谢谢</description>
      <link>http://topic.csdn.net/u/20081008/19/b3670a5e-521d-4e76-b5b7-6450f4775c04.html</link>
      <author>andy_minwoo</author>
      <pubDate>Wed, 08 Oct 2008 19:48:15 GMT</pubDate>
    </item>
    <item>
      <title>关于模运算的一个问题</title>
      <link>http://topic.csdn.net/u/20080924/17/95c22183-09a3-427e-9542-e86cd97e42ef.html</link>
      <author>yangaocheng</author>
      <pubDate>Thu, 25 Sep 2008 01:36:09 GMT</pubDate>
    </item>
    <item>
      <title>求思路</title>
      <description>给定连续自然数的开始A,结束B(0 &lt;A,B &lt;=1000000),把A到B的数乘起来,乘积可以超过int32.求出这个乘积的前5个数字比如 1*2*...10=3628800 那么前5个数字就是 3...</description>
      <link>http://topic.csdn.net/u/20081008/15/5ffefdce-b798-4999-bdd1-8a45182ea780.html</link>
      <author>saintqdd</author>
      <pubDate>Wed, 08 Oct 2008 15:32:53 GMT</pubDate>
    </item>
    <item>
      <title>如何判断3个文件的相似度？怎么设计算法？</title>
      <link>http://topic.csdn.net/u/20080915/22/21209056-47d0-4c62-9d0c-c1cafabb2555.html</link>
      <author>gyf2001</author>
      <pubDate>Tue, 16 Sep 2008 06:04:25 GMT</pubDate>
    </item>
    <item>
      <title>文件服务器 文件同步 文件备份</title>
      <description>文件服务器 文件同步 文件备份大家好,想问你们一个问题,就是,公司有30台电脑,一台服务器,想把30台客户端里面的文件同步备份到服务器上,客户端上有一份,服务器上也有一份.条件如下:1.要同步的文件类...</description>
      <link>http://topic.csdn.net/u/20081008/17/f2cd5fff-1a19-4151-9230-11e637512f3c.html</link>
      <author>ehongming</author>
      <pubDate>Wed, 08 Oct 2008 17:17:43 GMT</pubDate>
    </item>
    <item>
      <title>哈夫曼编码的疑问</title>
      <description>关于构造哈夫曼树生成编码有以下的问题，请教各位：如图 为什么一定要是1所示的那样呢 按照算法每次都要找最小的2个元素组成左右孩子啊 那不应该是2那样么？还有 我看到资料上基本都是从倒数第2层开始就有4...</description>
      <link>http://topic.csdn.net/u/20081005/10/f1a79aa3-9d26-486e-ba63-97b656163e15.html</link>
      <author>sunnyloves</author>
      <pubDate>Sun, 05 Oct 2008 10:33:20 GMT</pubDate>
    </item>
    <item>
      <title>我用intel C++ 9.0编译器编译hello.c程序出错</title>
      <link>http://topic.csdn.net/u/20080902/20/669aa398-6ccd-4520-8d32-49a5ed041b51.html</link>
      <author>jkting</author>
      <pubDate>Wed, 03 Sep 2008 04:44:27 GMT</pubDate>
    </item>
    <item>
      <title>求人推荐MPEG-2解码芯片</title>
      <description>  求人推荐下专门用于MPEG-2解码芯片，搭配ARM11平台使用的，实现视频播放。</description>
      <link>http://topic.csdn.net/u/20080927/19/97b85e5d-6957-444f-8dd8-5150594fec73.html</link>
      <author>jinyb</author>
      <pubDate>Sat, 27 Sep 2008 19:07:07 GMT</pubDate>
    </item>
    <item>
      <title>[Dshow提问]如何从PES里面获得h.264的视频信息？</title>
      <description>各位大侠： 小弟遇到一个关于h.264的视频解码信息问题，我自己写的demux filter，就是接收ts流，拆分成pes给下游ffdshow filter，通过跟踪ffdshow的代码和查找一些资料...</description>
      <link>http://topic.csdn.net/u/20081007/16/adacfef3-5377-4530-b3d7-f3e4b0c8750d.html</link>
      <author>terencezh</author>
      <pubDate>Tue, 07 Oct 2008 16:04:19 GMT</pubDate>
    </item>
    <item>
      <title>[ffdshow]ffshow需要的es流要做调整么？</title>
      <description>各位专家：我在写自己的demux filter和ffdshow的video decoder对接时候出现了一个问题，有用过或者出现过这个问题的专家或者大侠麻烦进来看看。ffdshow需要的是es流，但是...</description>
      <link>http://topic.csdn.net/u/20081008/16/afc6fc7c-5f03-42ac-803d-9a28117908b2.html</link>
      <author>terencezh</author>
      <pubDate>Wed, 08 Oct 2008 16:06:20 GMT</pubDate>
    </item>
    <item>
      <title>有人了解聊天机器人的实现原理么？</title>
      <link>http://topic.csdn.net/u/20070122/13/c49aee51-6f98-4293-9968-210ff6b7534f.html</link>
      <author>MrAdams</author>
      <pubDate>Mon, 22 Jan 2007 21:54:47 GMT</pubDate>
    </item>
    <item>
      <title>提供一套价值上W的采集程序给大家研究!非模版采集!不需要规则</title>
      <description>提供一套价值上W的采集程序给大家!非模版采集!不需要规则下载地址:http://test7.web7.yhhost.net/Spider.rar程序不大!但是很精悍!希望大家喜欢!多给点意见=====...</description>
      <link>http://topic.csdn.net/u/20081008/13/d2cd8dbf-e8e3-4668-8981-044f5cffa50a.html</link>
      <author>bbsmu</author>
      <pubDate>Wed, 08 Oct 2008 13:49:23 GMT</pubDate>
    </item>
    <item>
      <title>机器视觉的图像检查中，这几个概念是什么？</title>
      <description>线二值化窗口灰度窗口二值化边缘灰度边缘特征抽取智能模板</description>
      <link>http://topic.csdn.net/u/20081008/16/cd90ee60-7768-4112-aba4-1af0d9fba92b.html</link>
      <author>comszmz</author>
      <pubDate>Wed, 08 Oct 2008 16:09:09 GMT</pubDate>
    </item>
    <item>
      <title>我来看看,学学</title>
      <link>http://topic.csdn.net/u/20070821/10/952f3dc1-7c9f-4872-9576-3126339bcf51.html</link>
      <author>pl1069</author>
      <pubDate>Tue, 21 Aug 2007 18:57:46 GMT</pubDate>
    </item>
    <item>
      <title>关于手绘折线用尽量少的分段bezier拟合的问题 </title>
      <description>各位大虾，现在单位要实现一个类似coreldraw，illustrator里面的手绘工具（freehand）的功能，就是用鼠标在屏幕上画一条折线后（拖动鼠标左建），松开左键后你画的折线就自动的转化为一...</description>
      <link>http://topic.csdn.net/u/20081008/09/fcf02b42-80a4-49f4-b4e6-4072d2435a6f.html</link>
      <author>youpoo</author>
      <pubDate>Wed, 08 Oct 2008 09:40:00 GMT</pubDate>
    </item>
    <item>
      <title>英特尔为其广受欢迎的多核开发软件创建开放源代码项目</title>
      <link>http://topic.csdn.net/u/20070727/10/9889ecf9-e934-41d6-9e1b-cf30575cb6a3.html</link>
      <author>ycJ_154</author>
      <pubDate>Fri, 27 Jul 2007 18:13:00 GMT</pubDate>
    </item>
    <item>
      <title>MKL 9.0 FFT算法问题</title>
      <link>http://topic.csdn.net/u/20080727/21/e2fc0471-817e-49d1-946a-b617a6ba7c58.html</link>
      <author>csd_new</author>
      <pubDate>Mon, 28 Jul 2008 05:24:19 GMT</pubDate>
    </item>
    <item>
      <title>英特尔多核编程大赛Q &amp; A---4</title>
      <link>http://topic.csdn.net/u/20070612/14/b3750e47-6b69-4308-bca3-62220a89b062.html</link>
      <author>celineshi</author>
      <pubDate>Tue, 12 Jun 2007 22:25:14 GMT</pubDate>
    </item>
    <item>
      <title>[转]并行计算简介和多核CPU编程Demo</title>
      <link>http://topic.csdn.net/u/20070615/10/61dca855-16dd-4d34-b196-6e8ef7e85acb.html</link>
      <author>sapzj1984</author>
      <pubDate>Fri, 15 Jun 2007 18:51:42 GMT</pubDate>
    </item>
    <item>
      <title>并行计算简介和多核编程demo－housisong</title>
      <link>http://topic.csdn.net/u/20070202/09/32c3d484-0277-4cd8-868d-97e25a05e3dc.html</link>
      <author>celineshi</author>
      <pubDate>Fri, 02 Feb 2007 17:36:01 GMT</pubDate>
    </item>
    <item>
      <title>volatile  在线程同步时 原理是什么? 看书没看懂谢谢</title>
      <link>http://topic.csdn.net/u/20080911/21/3ef73792-fad1-4559-8802-fbd2f1c060cf.html</link>
      <author>dprk</author>
      <pubDate>Fri, 12 Sep 2008 05:51:40 GMT</pubDate>
    </item>
    <item>
      <title>关于视频压缩音频的问题</title>
      <description>我的一个剪辑好的视频需要对声音进行压缩，我想选择MPEG Layer-3压缩这个视频。我从GraphEdit中直接用filter压缩视频中的音频很顺利。但是我写成代码后就不行了，代码总是执行一下就关闭...</description>
      <link>http://topic.csdn.net/u/20081007/07/091f7537-574a-4012-bd87-539d1384e9b0.html</link>
      <author>fuleiwaibao</author>
      <pubDate>Tue, 07 Oct 2008 07:14:30 GMT</pubDate>
    </item>
    <item>
      <title>多緒在Core2Duo上面效能降低問題</title>
      <link>http://topic.csdn.net/u/20080910/23/c8bcbb29-3b8b-4ff1-8574-6be72e20f4f6.html</link>
      <author>ganuse</author>
      <pubDate>Thu, 11 Sep 2008 07:10:17 GMT</pubDate>
    </item>
    <item>
      <title>揭秘：多核处理器的九大关键技术</title>
      <link>http://topic.csdn.net/u/20070625/09/0d581c1d-300f-4fbd-91c2-f1ae1ad7a633.html</link>
      <author>Simore</author>
      <pubDate>Mon, 25 Jun 2007 17:22:48 GMT</pubDate>
    </item>
    <item>
      <title>英特尔多核软件开发讨论区 "最有技术价值帖"  精华汇总  更新至08.5.6</title>
      <link>http://topic.csdn.net/u/20080507/10/826a6a93-8777-4737-aa01-496bfc596e8a.html</link>
      <author>intel_iclifort</author>
      <pubDate>Wed, 07 May 2008 18:27:35 GMT</pubDate>
    </item>
    <item>
      <title>英特尔 软件开发工具 技术文章 索引</title>
      <link>http://topic.csdn.net/u/20080407/13/fcf18324-44ea-4a61-9011-a4bc11d48af5.html</link>
      <author>intel_iclifort</author>
      <pubDate>Mon, 07 Apr 2008 21:52:55 GMT</pubDate>
    </item>
    <item>
      <title>为什么SQL 2005的Profiler可以看到带"Password"字符的语法?</title>
      <link>http://topic.csdn.net/u/20080925/19/b026ce51-585e-415d-8b51-2cc9309d58fb.html</link>
      <author>haike</author>
      <pubDate>Fri, 26 Sep 2008 03:12:11 GMT</pubDate>
    </item>
    <item>
      <title>数据库的多文件存储，如何使记录与文件的大小刚刚好？</title>
      <description>一个数据文件通常可以存储多个表的数据内容，但由于多数据文件的存在，即使一个表的数据被存在多个数据文件中也是可以实现读取和写入的。但问题是，数据文件是预先定义好大小的（这是DBA做的），可如何保证表的荣...</description>
      <link>http://topic.csdn.net/u/20081008/10/b73f6b8e-ae39-4e4a-9f5b-a14a3f3bcef0.html</link>
      <author>zkx2321</author>
      <pubDate>Wed, 08 Oct 2008 10:30:30 GMT</pubDate>
    </item>
    <item>
      <title>求C++编写的SIFT图像配准算法</title>
      <description>求C++编写的SIFT图像配准算法</description>
      <link>http://topic.csdn.net/u/20081008/00/222b75c0-ba47-4b43-b4fe-e8098650ec9b.html</link>
      <author>wsjtianyu</author>
      <pubDate>Wed, 08 Oct 2008 00:18:03 GMT</pubDate>
    </item>
    <item>
      <title>A*算法在什么情况下不实用</title>
      <description>如题</description>
      <link>http://topic.csdn.net/u/20081008/08/eaadd365-2bd0-4f42-8aad-76fe6c500ff8.html</link>
      <author>liangneo</author>
      <pubDate>Wed, 08 Oct 2008 08:50:02 GMT</pubDate>
    </item>
    <item>
      <title>高薪招聘逆向调试人员！年薪10万，待遇绝对优厚！</title>
      <description>高薪招聘逆向调试人员！年薪10万，待遇绝对优厚！工作地点：吉林省长春市（兼职不限）工作性质：全职（可兼职）招收人数：若干要求学历：不限 薪    水：全    职：年薪10万，每月1万左右，年底有奖金...</description>
      <link>http://topic.csdn.net/u/20081007/02/07524446-6f4e-467c-b01f-7af2bfa7a3d1.html</link>
      <author>TXQQ4878022</author>
      <pubDate>Tue, 07 Oct 2008 02:13:41 GMT</pubDate>
    </item>
    <item>
      <title>生物脑</title>
      <description>人工智能,能不能出现在以其他生物为基础的框架结果下.比如蚂蚁,使用蚂蚁代替计算机.</description>
      <link>http://topic.csdn.net/u/20081002/22/880b8ec4-ecd0-4c7b-9bf1-0b7d11348f6e.html</link>
      <author>renlong24</author>
      <pubDate>Thu, 02 Oct 2008 22:04:08 GMT</pubDate>
    </item>
    <item>
      <title>问一个全排列小问题</title>
      <description>全排列用递归实现，但是比如现在有一组序列：2,4,3,4,3 输出其全排列，这样会得到许多重复解。比如会有多个2 4 4 3 3请问怎样在递归的时候，把这些具有相同输出得解给剪掉呢？[code=C/C...</description>
      <link>http://topic.csdn.net/u/20081005/12/866c352a-644c-4c41-9456-15c9822528a2.html</link>
      <author>gigigogo</author>
      <pubDate>Sun, 05 Oct 2008 12:01:20 GMT</pubDate>
    </item>
    <item>
      <title>在windows平台下使用开源的TCP/IP协议栈？</title>
      <description>出于项目需要，我必须修改tcp/ip协议栈中的一些默认行为（修改比较多，不是简单的参数tunning，加入了一些定制行为），如果在linux/freebsd/unix下面，这个问题当然很好解决，可是现...</description>
      <link>http://topic.csdn.net/u/20081002/15/e7d11f47-a0c8-47f5-98ac-0120914aff2e.html</link>
      <author>lifegamer</author>
      <pubDate>Thu, 02 Oct 2008 15:49:26 GMT</pubDate>
    </item>
    <item>
      <title>发个题目耍耍，medie number</title>
      <link>http://topic.csdn.net/u/20080803/18/dabf792f-3e65-49fc-89e9-ce53cc395b50.html</link>
      <author>medie2005</author>
      <pubDate>Mon, 04 Aug 2008 02:01:05 GMT</pubDate>
    </item>
    <item>
      <title>将网页以图像的形式显示在3D游戏中</title>
      <description>各位XDJM，请帮忙！我想将一个网页以图像的形式显示在一个3D游戏的一个小区域中，不知道哪位兄台做过这方面？能否给点实现的思路新手，没分相送，但将感激不尽！</description>
      <link>http://topic.csdn.net/u/20080928/14/b3563ae2-8572-4154-8963-4e1e3b898dbf.html</link>
      <author>winterimm</author>
      <pubDate>Sun, 28 Sep 2008 14:04:07 GMT</pubDate>
    </item>
    <item>
      <title>急问: DV时的音频流保存到文件里面（asf文件），时间戳打得是否正确?</title>
      <description>DV拍摄时,将音视频编码后的数据写成asf格式文件,在采集的时候,将此时的时间记录下来作为这帧的时间戳.在PC上播放时,发现有些播放器播放时,视频直接跳到第4秒左右的那帧,并且画面静止,音频是从O秒开...</description>
      <link>http://topic.csdn.net/u/20081007/17/faf35f8d-bc38-4747-b740-9b90545dbb7a.html</link>
      <author>guoweijun2004</author>
      <pubDate>Tue, 07 Oct 2008 17:44:52 GMT</pubDate>
    </item>
    <item>
      <title>经典的彩灯变幻问题</title>
      <link>http://topic.csdn.net/u/20080405/13/63c53f8c-0f8f-47c8-aa9f-f06eaf2bbd54.html</link>
      <author>vvccstar</author>
      <pubDate>Sat, 05 Apr 2008 21:43:19 GMT</pubDate>
    </item>
    <item>
      <title>请问如何设置二级域名</title>
      <description>我公司有一台自己的服务器,WIN2000系统,怎么才能在上面设置自己的二级域名?? 请大虾说得越详细越好.  具体步骤</description>
      <link>http://topic.csdn.net/u/20081007/16/fb4861fc-9cf6-4a84-9d85-0bdc5f6ef771.html</link>
      <author>csy19871106</author>
      <pubDate>Tue, 07 Oct 2008 16:51:31 GMT</pubDate>
    </item>
    <item>
      <title>可以设置部分GRAPH运行吗？</title>
      <description>比如，构建好一个GRAPH运行后，其中的某一部分——写文件的FILTER，在运行中的某一时间段内不需要将流内容写入文件，而GRAPH的其他部分仍旧正常工作，过后再恢复写文件的功能，写的而且是与前面同样...</description>
      <link>http://topic.csdn.net/u/20081006/22/49f2b06c-0c7b-4f6c-b6f7-a84f14df59df.html</link>
      <author>luor</author>
      <pubDate>Mon, 06 Oct 2008 22:43:06 GMT</pubDate>
    </item>
    <item>
      <title>dshow视频图像拉伸以后不流畅</title>
      <description>视频采集，IVideoWindow的 SetWindowPosition方法，将视频图像尺寸拉伸以后，会出现卡的现象，很不流畅，而当我再次调用 SetWindowPosition方法将视频图像还原到实...</description>
      <link>http://topic.csdn.net/u/20081006/17/ea839600-f5c8-4045-9454-de4dba773623.html</link>
      <author>xxdelta</author>
      <pubDate>Mon, 06 Oct 2008 17:27:10 GMT</pubDate>
    </item>
    <item>
      <title>行业二次开发源程序代码</title>
      <description>探索软件工作室长期专业承接中小型商业软件或网站，最优惠的价格和高质量的服务期待您的惠顾！ java jsp实战源程序代码:                                  1.办公自...</description>
      <link>http://topic.csdn.net/u/20081007/16/38f2355b-f12b-49b1-a32a-64f7cd7fbbda.html</link>
      <author>dsoft2008003</author>
      <pubDate>Tue, 07 Oct 2008 16:00:48 GMT</pubDate>
    </item>
    <item>
      <title>出售Gamebryo全引擎源代码 不需商业授权 可完整编译 使用</title>
      <description>出售Gamebryo全引擎源代码 不需商业授权 可完整编译 使用本人是代码收集爱好者 这个版本是从国外淘来的 看见很多人求 如果免费发出来 就泛滥了 所以卖个意思 200块一套 别砍价 砍价不卖虚幻3...</description>
      <link>http://topic.csdn.net/u/20081007/09/55bdf733-e1ca-452c-9746-b78f705eabbd.html</link>
      <author>hx5241</author>
      <pubDate>Tue, 07 Oct 2008 09:29:53 GMT</pubDate>
    </item>
    <item>
      <title>将R和B值调换后，奇怪的现象</title>
      <description>各位，请问一个问题。我需要显示图片，把byte*[]/unsigned char 转换成bmp显示。开始是每个像素中R和B的值放反了，编了一个程序将每个像素的R和B值调过来，出现了相当奇怪的现象。就是...</description>
      <link>http://topic.csdn.net/u/20081003/12/eed7473d-ed59-47fb-baac-3906d5f1f2fd.html</link>
      <author>sunnyNight</author>
      <pubDate>Fri, 03 Oct 2008 12:48:32 GMT</pubDate>
    </item>
    <item>
      <title>请问谁有13818-1 2002版啊 </title>
      <description>能给我传一份吗？zhangshj@yahoo.cn</description>
      <link>http://topic.csdn.net/u/20081007/14/82fb11eb-55a6-4854-af3a-ab7b0478ee04.html</link>
      <author>trunk0813</author>
      <pubDate>Tue, 07 Oct 2008 14:17:50 GMT</pubDate>
    </item>
    <item>
      <title>用java实现RSA算法</title>
      <link>http://topic.csdn.net/u/20070122/13/7613ccc1-04f8-4ce8-8bd9-19067302fbdb.html</link>
      <author>yanglilibaobao</author>
      <pubDate>Mon, 22 Jan 2007 21:45:05 GMT</pubDate>
    </item>
    <item>
      <title>“据说,美国空军的飞行员被强制达到2分钟”小游戏的算法</title>
      <description>在网上今天见到一个小游戏，具体如下：http://www.474300.com/yx/想问一下这个是什么算法，要是有源代码就更好了，O(∩_∩)O哈哈~</description>
      <link>http://topic.csdn.net/u/20081005/21/36cb25f6-22ac-4a98-90f6-9e680c90b2a0.html</link>
      <author>yitianmengyu</author>
      <pubDate>Sun, 05 Oct 2008 21:05:13 GMT</pubDate>
    </item>
    <item>
      <title>关于八叉树颜色量化与减色算法中，需要合并叶节点时，如何选择？</title>
      <description>色盘256色，已经有256个叶子节点，此时加入一个新的颜色，如何判断应该合并那些节点？如果可能，谁提供一下该算法的详细介绍？谢谢</description>
      <link>http://topic.csdn.net/u/20081006/14/65ab5827-1711-4ab0-ba91-388ee1c9404b.html</link>
      <author>Sqs82</author>
      <pubDate>Mon, 06 Oct 2008 14:31:01 GMT</pubDate>
    </item>
  </channel>
</rss>