中值排序基数法(Median sorting Radix method).doc

中值排序基数法(Median sorting Radix method).doc

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中值排序基数法(Median sorting Radix method)

中值排序基数法(Median sorting Radix method) Implementation of tree structure with median sorting Radix method In the preparation of BBS, people have often asked how to implement tree structure An irresponsible answer is to use recursive algorithms. Recursion is, of course, a feasible solution (the two fork tree movesthrough seemed to only use the recursive algorithm), but for BBS, it was a large number of Sql query (although you can use stored procedures to do, but fundamentally to speed up, you should consider a faster algorithm). Here is an algorithm to implement a tree structure that is feasible and completely discarded. Here is another way to implement a tree structure using the median sorting Radix method: First, the main idea: to add a sort of Radix field ordernum, reply to the same post, insert the post, sort Radix ordernum, take the median of the two. For the brevity of the narrative, the fields related to the tree structure are discussed only here. Add three redundant fields in the table, rootid -- for recording root ID, deep - for recording the depth of the reply (representing root paste at 0), and ordernum -- sort base (key). Table forum and (only columns related to the tree structure):id, rootid, deep, ordernum, in which ID, rootid, and deep are int (deep is tinyint) and ordernum is float. (in this example: for simplicity, using a small initial order base, in the practical application, should be used to start large base, and should take an integer power of 2, such as 65536=2^16, what sort are sorted by ordernum value). ID rootid deep ordernum 1000 21164 ______________________________ 31132 replies first pastes, takes 1 and 2 cardinal number median, namely (0+64) /2 After sorting, the result is: ID rootid deep ordernum 1000 31132 21164 ______________________________ 41248 replies third pastes, takes 3, 2 base median value, namely (32+64) /2 After sorting, the result is: ID rootid deep ordernum 1000 31132 41248 21164 ______________________________ 51356 replies f

您可能关注的文档

文档评论(0)

jgx3536 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:6111134150000003

1亿VIP精品文档

相关文档