数据结构c语言版李建中版pptchapter7.ppt

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

CHAPTER 7 CHAPTER 7 SORTING Sequential Search Example 44, 55, 12, 42, 94, 18, 06, 67 unsuccessful search n+1 successful search * (P.320) # define MAX-SIZE 1000/* maximum size of list plus one */ typedef struct { int key; /* other fields */ } element; element list[MAX_SIZE]; *Program 7.1:Sequential search (p.321) int seqsearch( int list[ ], int searchnum, int n ) { /*search an array, list, that has n numbers. Return i, if list[i]=searchnum. Return -1, if searchnum is not in the list */ int i; list[n]=searchnum; sentinel for (i=0; list[i] != searchnum; i++) ; return (( in) ? i : -1); } *Program 7.2: Binary search (p.322) int binsearch(element list[ ], int searchnum, int n) { /* search list [0], ..., list[n-1]*/ int left = 0, right = n-1, middle; while (left = right) { middle = (left+ right)/2; switch (COMPARE(list[middle].key, searchnum)) { case -1: left = middle +1; break; case 0: return middle; case 1:right = middle - 1; } } return -1; } *Figure 7.1:Decision tree for binary search (p.323) List Verification Compare lists to verify that they are identical or identify the discrepancies. example international revenue service (e.g., employee vs. employer) complexities random order: O(mn) ordered list: O(tsort(n)+tsort(m)+m+n) *Program 7.3: verifying using a sequential search(p.324) void verify1(element list1[], element list2[ ], int n, int m) /* compare two unordered lists list1 and list2 */ { int i, j; int marked[MAX_SIZE]; for(i = 0; im; i++) marked[i] = FALSE; for (i=0; in; i++) if ((j = seqsearch(list2, m, list1[i].key)) 0) printf(“%d is not in list 2\n “, list1[i].key); else /* check each of the other fields from list1[i] and list2[j], and print out any discrepancies */ marked[j] = TRUE; for ( i=0; im; i++) if (!marked[i])

文档评论(0)

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

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

1亿VIP精品文档

相关文档