<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="rss.xsl" media="screen"?>
<rss version="2.0">
  <channel>
    <title>FreeTalk - 数据结构</title>
    <link>http://www.gispower.org/bbs/showforum-11.aspx</link>
    <description>Latest 20 threads</description>
    <copyright>Copyright (c) FreeTalk</copyright>
    <generator>Discuz!NT</generator>
    <pubDate>Tue, 14 Oct 2008 20:34:19 GMT</pubDate>
    <ttl>60</ttl>
    <item>
      <title>k-均值聚类算法c语言版</title>
      <description><![CDATA[#include &amp;lt;stdio.h&amp;gt; 
#include &amp;lt;math.h&amp;gt;
#define TRUE            1
#define FALSE           0 
int N;//数据个数
int K;//集合个数
int
* CenterIndex;//初始化质心数组的索引
double
* Center;//质心集合
double]]></description>
      <link>http://www.gispower.org/bbs/showtopic-31.aspx</link>
      <category>数据结构</category>
      <author>heilongka</author>
      <pubDate>Wed, 28 May 2008 22:04:39 GMT</pubDate>
    </item>
    <item>
      <title>线索二叉树</title>
      <description><![CDATA[线索二叉树主要是为了解决查找结点的线性前驱与后继不方便的难题。它只增加了两个标志性域，就可以充分利用没有左或右孩子的结点的左右孩子的存储空间来存放该结点的线性前驱结点与线性后继结点。两个标志性域所占用的空间是极少的，所有充分利用了二叉链表中空闲存的储空间。 
要实现线索二叉树，就必须定义二叉链表结点数据结构如下（定义请看代码）：
Lnode
Ltag
Data
Rtag
Rnode
]]></description>
      <link>http://www.gispower.org/bbs/showtopic-20.aspx</link>
      <category>数据结构</category>
      <author>gispower</author>
      <pubDate>Sat, 17 May 2008 14:46:37 GMT</pubDate>
    </item>
  </channel>
</rss>