当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

《数字信号处理》教学参考资料(Numerical Recipes in C,The Art of Scientific Computing Second Edition)Chapter 08.5 Sorting 8.5 Selecting the Mth Largest

资源类别:文库,文档格式:PDF,文档页数:5,文件大小:63.37KB,团购合买
点击下载完整版文档(PDF)

8.5 Selecting the Mth Largest 341 was the smallest)to N (if that element was the largest).One can easily construct a rank table from an index table,however: void rank(unsigned long n,unsigned long indx[],unsigned long irank[]) Given indx[1..n]as output from the routine indexx,returns an array irank[1..n],the corresponding table of ranks. f unsigned long j; for (j=1;j100 we usually define k =N/2 to be the median element,pedants be damned. North The fastest general method for selection,allowing rearrangement,is partition- ing,exactly as was done in the Quicksort algorithm (88.2).Selecting a"random" partition element,one marches through the array,forcing smaller elements to the eft,larger elements to the right.As in Quicksort,it is important to optimize the inner loop,using "sentinels"(88.2)to minimize the number of comparisons.For sorting,one would then proceed to further partition both subsets.For selection, we can ignore one subset and attend only to the one that contains our desired kth element.Selection by partitioning thus does not need a stack of pending operations, and its operations count scales as N rather than as Nlog N (see [11).Comparison with sort in 88.2 should make the following routine obvious:

8.5 Selecting the Mth Largest 341 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). was the smallest) to N (if that element was the largest). One can easily construct a rank table from an index table, however: void rank(unsigned long n, unsigned long indx[], unsigned long irank[]) Given indx[1..n] as output from the routine indexx, returns an array irank[1..n], the corresponding table of ranks. { unsigned long j; for (j=1;j 100 we usually define k = N/2 to be the median element, pedants be damned. The fastest general method for selection, allowing rearrangement, is partition￾ing, exactly as was done in the Quicksort algorithm (§8.2). Selecting a “random” partition element, one marches through the array, forcing smaller elements to the left, larger elements to the right. As in Quicksort, it is important to optimize the inner loop, using “sentinels” (§8.2) to minimize the number of comparisons. For sorting, one would then proceed to further partition both subsets. For selection, we can ignore one subset and attend only to the one that contains our desired kth element. Selection by partitioning thus does not need a stack of pending operations, and its operations count scales as N rather than as N log N (see [1]). Comparison with sort in §8.2 should make the following routine obvious:

342 Chapter 8.Sorting #define SWAP(a,b)temp=(a)(a)=(b);(b)=temp; float select(unsigned long k,unsigned long n,float arr[]) Returns the kth smallest value in the array arr[1..n].The input array will be rearranged to have this value in location arr[k],with all smaller elements moved to arr[1..k-1](in arbitrary order)and all larger elements in arr [k+1..n](also in arbitrary order). unsigned long i,ir,j,1,mid; float a,temp; 1=1: 1r=n; for(;;){ 1f(1r1; Choose median of left,center,and right el- SWAP(arr [mid],arr[1+1]) ements as partitioning element a.Also if (arr[l]arr[ir]){ rearrange so that arr[1]arr[1+1], SWAP(arr[1],arr[ir]) RECIPES I arr[ir]≥arr[1+1]. if (arr[1+1]arr[ir]){ SWAP(arr[1+1],arr[ir]) Press. if(arr[1]>arr[1+1])[ SWAP(arr[1],arr[1+1]) i=1+1; Initialize pointers for partitioning. j=1r; a=arr[1+1] Partitioning element. for(:;){ Beginning of innermost loop. IENTIFIC do i++;while (arr[i]a); Scan up to find element a. do j--;while (arr[j]a); Scan down to find element a. to dir if (i=k)1r=j-1; Keep active the partition that contains the 1f(j<=k)1=1; kth element. Numerica 10.621 22 uction Recipes 431086 (outside In-place,nondestructive,selection is conceptually simple,but it requires a lot of bookkeeping,and it is correspondingly slower.The general idea is to pick some Software. 首 number M of elements at random,to sort them,and then to make a pass through the array counting how many elements fall in each of the M+1 intervals defined by these elements.The kth largest will fall in one such interval-call it the "live" interval.One then does a second round,first picking M random elements in the live interval,and then determining which of the new,finer,M+1 intervals all presently live elements fall into.And so on,until the kth element is finally localized within a single array of size M,at which point direct selection is possible. How shall we pick M?The number of rounds,logM N log2 N/log2 M, will be smaller if M is larger;but the work to locate each element among M+1 subintervals will be larger,scaling as log2 M for bisection,say.Each round

342 Chapter 8. Sorting Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). #define SWAP(a,b) temp=(a);(a)=(b);(b)=temp; float select(unsigned long k, unsigned long n, float arr[]) Returns the kth smallest value in the array arr[1..n]. The input array will be rearranged to have this value in location arr[k], with all smaller elements moved to arr[1..k-1] (in arbitrary order) and all larger elements in arr[k+1..n] (also in arbitrary order). { unsigned long i,ir,j,l,mid; float a,temp; l=1; ir=n; for (;;) { if (ir > 1; Choose median of left, center, and right el￾ements as partitioning element a. Also rearrange so that arr[l] ≤ arr[l+1], arr[ir] ≥ arr[l+1]. SWAP(arr[mid],arr[l+1]) if (arr[l] > arr[ir]) { SWAP(arr[l],arr[ir]) } if (arr[l+1] > arr[ir]) { SWAP(arr[l+1],arr[ir]) } if (arr[l] > arr[l+1]) { SWAP(arr[l],arr[l+1]) } i=l+1; Initialize pointers for partitioning. j=ir; a=arr[l+1]; Partitioning element. for (;;) { Beginning of innermost loop. do i++; while (arr[i] a. do j--; while (arr[j] > a); Scan down to find element = k) ir=j-1; Keep active the partition that contains the if (j <= k) l=i; kth element. } } } In-place, nondestructive, selection is conceptually simple, but it requires a lot of bookkeeping, and it is correspondingly slower. The general idea is to pick some number M of elements at random, to sort them, and then to make a pass through the array counting how many elements fall in each of the M + 1 intervals defined by these elements. The kth largest will fall in one such interval — call it the “live” interval. One then does a second round, first picking M random elements in the live interval, and then determining which of the new, finer, M + 1 intervals all presently live elements fall into. And so on, until the kth element is finally localized within a single array of size M, at which point direct selection is possible. How shall we pick M? The number of rounds, logM N = log2 N/ log2 M, will be smaller if M is larger; but the work to locate each element among M + 1 subintervals will be larger, scaling as log2 M for bisection, say. Each round

8.5 Selecting the Mth Largest 343 requires looking at all N elements,if only to find those that are still alive,while the bisections are dominated by the N that occur in the first round.Minimizing O(N logM N)+O(N log2 M)thus yields the result M2Vlog2 N (8.5.1) The square root of the logarithm is so slowly varying that secondary considerations of machine timing become important.We use M=64 as a convenient constant value. Two minor additional tricks in the following routine,selip,are(i)augmenting the set of M random values by an M+Ist,the arithmetic mean,and(ii)choosing 8 the M random values"on the fly"in a pass through the data,by a method that makes later values no less likely to be chosen than earlier ones.(The underlying idea is to give element m>M an M/m chance of being brought into the set.You can prove by induction that this yields the desired result.) 3 #include "nrutil.h" #define M 64 RECIPES #define BIG 1.0e30 #define FREEALL free_vector(sel,1,M+2);free_lvector(isel,1,M+2); float selip(unsigned long k,unsigned long n,float arr[]) Returns the kth smallest value in the array arr [1..n].The input array is not altered. computer, Ameri Press. ART void shel1(unsigned long n,f1oata[▣); unsigned long i,j,j1,jm,ju,kk,mm,nlo,nxtmm,*isel; Programs float ahi,alo,sum,*sel; if (kn ll n =aloarr[i]<ahi){ Consider only elements in the current brackets. idge.org Numerical Recipes 43108 mm++; if (arr[i]=alo)nlo++; In case of ties for low bracket. Now use statistical procedure for selecting m in-range elements with equal probability,even without knowing in advance how many there are! (outside if (mm <M)sel[mm]-arr[i]; North Software. else if (mm ==nxtmm){ nxtmm=mm+mm/M; sel[1 ((i+mm+kk)%M)]=arr[i];The operation provides a some- what random number. sum +=arr[i]; if (kk <nlo){ Desired element is tied for lower bound; FREEALL return it. return alo; 2 else if (mm <M){ All in-range elements were kept.So re- shell(mm,sel); turn answer by direct method. ahi sel[kk];

8.5 Selecting the Mth Largest 343 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). requires looking at all N elements, if only to find those that are still alive, while the bisections are dominated by the N that occur in the first round. Minimizing O(N logM N) + O(N log2 M) thus yields the result M ∼ 2 √log2 N (8.5.1) The square root of the logarithm is so slowly varying that secondary considerations of machine timing become important. We use M = 64 as a convenient constant value. Two minor additional tricks in the following routine, selip, are (i) augmenting the set of M random values by an M + 1st, the arithmetic mean, and (ii) choosing the M random values “on the fly” in a pass through the data, by a method that makes later values no less likely to be chosen than earlier ones. (The underlying idea is to give element m>M an M/m chance of being brought into the set. You can prove by induction that this yields the desired result.) #include "nrutil.h" #define M 64 #define BIG 1.0e30 #define FREEALL free_vector(sel,1,M+2);free_lvector(isel,1,M+2); float selip(unsigned long k, unsigned long n, float arr[]) Returns the kth smallest value in the array arr[1..n]. The input array is not altered. { void shell(unsigned long n, float a[]); unsigned long i,j,jl,jm,ju,kk,mm,nlo,nxtmm,*isel; float ahi,alo,sum,*sel; if (k n || n = alo && arr[i] <= ahi) { Consider only elements in the current brackets. mm++; if (arr[i] == alo) nlo++; In case of ties for low bracket. Now use statistical procedure for selecting m in-range elements with equal probability, even without knowing in advance how many there are! if (mm <= M) sel[mm]=arr[i]; else if (mm == nxtmm) { nxtmm=mm+mm/M; sel[1 + ((i+mm+kk) % M)]=arr[i]; The % operation provides a some- } what random number. sum += arr[i]; } } if (kk <= nlo) { Desired element is tied for lower bound; FREEALL return it. return alo; } else if (mm <= M) { All in-range elements were kept. So re￾shell(mm,sel); turn answer by direct method. ahi = sel[kk];

344 Chapter 8. Sorting FREEALL return ahi; sel [M+1]=sum/mm Augment selected set by mean value(fixes she11(M+1,se1); degeneracies),and sort it. sel[M+2]=ahi; for(j=1;j=alo&&arr[i]1){ ...find its position among the select by jm=(ju+j1)/2; bisection... if (arr[i]>sel[jm])jl=jm; else ju=jm; 1se1[ju]+; ...and increment the counter. 2 j=1; Now we can narrow the bounds to just while (kk isel[j]){ one bin,that is,by a factor of order alo=sel[j]; kk-=1se1[j++]; ahi=sel[j]; Americ computer, Press. Approximate timings:selip is about 10 times slower than select.Indeed, 9 for N in the range of~10,selip is about 1.5 times slower than a full sort with sort,while select is about 6 times faster than sort.You should weigh time against memory and convenience carefully. SCIENTIFIC Of course neither of the above routines should be used for the trivial cases of finding the largest,or smallest,element in an array.Those cases,you code by hand as simple for loops.There are also good ways to code the case where k is modest in comparison to N,so that extra memory of order k is not burdensome.An example is to use the method of Heapsort(88.3)to make a single pass through an array of length N while saving the m largest elements.The advantage of the heap structure is that only log m,rather than m,comparisons are required every time a new element Numerica 10621 is added to the candidate list.This becomes a real savings when m >O(VN),but it never hurts otherwise and is easy to code.The following program gives the idea. uction 43106 Recipes void hpsel(unsigned long m,unsigned long n,float arr[],float heap[]) Returns in heap[1..m]the largest m elements of the array arr[1..n],with heap[1]guaran- (outside teed to be the the mth largest element.The array arr is not altered.For efficiency,this routine Software. should be used only when mn. North void sort(unsigned long n,float arr[]); void nrerror(char error_text []) unsigned long i,j,k; float swap; if (m n/2 II m 1)nrerror("probable misuse of hpsel"); for (i=1;i<=m;i++)heap[i]=arr[i]; sort(m,heap); Create initial heap by overkill!We assume mn. for(i=m+1;1<=n;1++)[ For each remaining element.. if (arr[i]heap[1]){ Put it on the heap? heap[1]=arr[i]; for(j=1;;){ Sift down

344 Chapter 8. Sorting Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). FREEALL return ahi; } sel[M+1]=sum/mm; Augment selected set by mean value (fixes shell(M+1,sel); degeneracies), and sort it. sel[M+2]=ahi; for (j=1;j= alo && arr[i] 1) { ...find its position among the select by jm=(ju+jl)/2; bisection... if (arr[i] >= sel[jm]) jl=jm; else ju=jm; } isel[ju]++; ...and increment the counter. } } j=1; Now we can narrow the bounds to just one bin, that is, by a factor of order m. while (kk > isel[j]) { alo=sel[j]; kk -= isel[j++]; } ahi=sel[j]; } } Approximate timings: selip is about 10 times slower than select. Indeed, for N in the range of ∼ 105, selip is about 1.5 times slower than a full sort with sort, while select is about 6 times faster than sort. You should weigh time against memory and convenience carefully. Of course neither of the above routines should be used for the trivial cases of finding the largest, or smallest, element in an array. Those cases, you code by hand as simple for loops. There are also good ways to code the case where k is modest in comparison to N, so that extra memory of order k is not burdensome. An example is to use the method of Heapsort (§8.3) to make a single pass through an array of length N while saving the m largest elements. The advantage of the heap structure is that only log m, rather than m, comparisons are required every time a new element is added to the candidate list. This becomes a real savings when m>O( √N), but it never hurts otherwise and is easy to code. The following program gives the idea. void hpsel(unsigned long m, unsigned long n, float arr[], float heap[]) Returns in heap[1..m] the largest m elements of the array arr[1..n], with heap[1] guaran￾teed to be the the mth largest element. The array arr is not altered. For efficiency, this routine should be used only when m n. { void sort(unsigned long n, float arr[]); void nrerror(char error_text[]); unsigned long i,j,k; float swap; if (m > n/2 || m heap[1]) { Put it on the heap? heap[1]=arr[i]; for (j=1;;) { Sift down.

8.6 Determination of Equivalence Classes 345 k=jm)break; if (k !m&&heap[k]heap[k+1])k++; if (heap[j]<heap[k])break; swap=heap[k]; heap[k]=heap[j」; heap[j]=swap; j=k; 22.2 83g CITED REFERENCES AND FURTHER READING: granted for (including 19881992 Sedgewick,R.1988.Algorithms.2nd ed.(Reading.MA:Addison-Wesley).pp.126ff.[1] Knuth,D.E.1973.Sorting and Searching.vol.3 of The Art of Computer Programming(Reading. NUMERICAL MA:Addison-Wesley). RECIPES I 8.6 Determination of Equivalence Classes A number of techniques for sorting and searching relate to data structures whose details America Press. are beyond the scope of this book,for example,trees,linked lists,etc.These structures and their manipulations are the bread and butter of computer science,as distinct from numerical analysis,and there is no shortage of books on the subject. 9 In working with experimental data,we have found that one particular such manipulation, namely the determination of equivalence classes,arises sufficiently often to justify inclusion SCIENTIFIC here. The problem is this:There are N“elements”(or“data points'”or whatever),numbered 1,...,N.You are given pairwise information about whether elements are in the same equivalence class of"sameness,"by whatever criterion happens to be of interest.For example, you may have a list of facts like:"Element 3 and element 7 are in the same class:element 19 and element 4 are in the same class;element 7 and element 12 are in the same class,...." COMPUTING (ISBN 1992 Alternatively,you may have a procedure,given the numbers of two elements j and k,for deciding whether they are in the same class or different classes.(Recall that an equivalence relation can be anything satisfying the RST properties:reflexive,symmetric,transitive.This is compatible with any intuitive definition of"sameness.") Numerica 10621 The desired output is an assignment to each of the N elements of an equivalence class number,such that two elements are in the same class if and only if they are assigned the same class number. Recipes 43106 Efficient algorithms work like this:Let F()be the class or"family"number of element (outside j.Start off with each element in its own family,so that F(j)=j.The array F(j)can be interpreted as a tree structure,where F(j)denotes the parent of j.If we arrange for each family North Software. to be its own tree,disjoint from all the other "family trees,"then we can label each family (equivalence class)by its most senior great-great-...grandparent.The detailed topology of the tree doesn't matter at all,as long as we graft each related element onto it somewhere. Therefore,we process each elemental datum"j is equivalent to k"by (i)tracking j up to its highest ancestor,(ii)tracking k up to its highest ancestor,(iii)giving j to k as a new parent,or vice versa (it makes no difference).After processing all the relations,we go through all the elements j and reset their F(j)'s to their highest possible ancestors,which then label the equivalence classes. The following routine,based on Knuth[1],assumes that there are m elemental pieces of information,stored in two arrays of length m,lista,listb,the interpretation being that lista[j]and listb[j],j=1...m,are the numbers of two elements which (we are thus told)are related

8.6 Determination of Equivalence Classes 345 Permission is granted for internet users to make one paper copy for their own personal use. Further reproduction, or any copyin Copyright (C) 1988-1992 by Cambridge University Press. Programs Copyright (C) 1988-1992 by Numerical Recipes Software. Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5) g of machine￾readable files (including this one) to any server computer, is strictly prohibited. To order Numerical Recipes books or CDROMs, visit website http://www.nr.com or call 1-800-872-7423 (North America only), or send email to directcustserv@cambridge.org (outside North America). k=j m) break; if (k != m && heap[k] > heap[k+1]) k++; if (heap[j] <= heap[k]) break; swap=heap[k]; heap[k]=heap[j]; heap[j]=swap; j=k; } } } } CITED REFERENCES AND FURTHER READING: Sedgewick, R. 1988, Algorithms, 2nd ed. (Reading, MA: Addison-Wesley), pp. 126ff. [1] Knuth, D.E. 1973, Sorting and Searching, vol. 3 of The Art of Computer Programming (Reading, MA: Addison-Wesley). 8.6 Determination of Equivalence Classes A number of techniques for sorting and searching relate to data structures whose details are beyond the scope of this book, for example, trees, linked lists, etc. These structures and their manipulations are the bread and butter of computer science, as distinct from numerical analysis, and there is no shortage of books on the subject. In working with experimental data, we have found that one particular such manipulation, namely the determination of equivalence classes, arises sufficiently often to justify inclusion here. The problem is this: There are N “elements” (or “data points” or whatever), numbered 1,...,N. You are given pairwise information about whether elements are in the same equivalence class of “sameness,” by whatever criterion happens to be of interest. For example, you may have a list of facts like: “Element 3 and element 7 are in the same class; element 19 and element 4 are in the same class; element 7 and element 12 are in the same class, ... .” Alternatively, you may have a procedure, given the numbers of two elements j and k, for deciding whether they are in the same class or different classes. (Recall that an equivalence relation can be anything satisfying the RST properties: reflexive, symmetric, transitive. This is compatible with any intuitive definition of “sameness.”) The desired output is an assignment to each of the N elements of an equivalence class number, such that two elements are in the same class if and only if they are assigned the same class number. Efficient algorithms work like this: Let F(j) be the class or “family” number of element j. Start off with each element in its own family, so that F(j) = j. The array F(j) can be interpreted as a tree structure, where F(j) denotes the parent of j. If we arrange for each family to be its own tree, disjoint from all the other “family trees,” then we can label each family (equivalence class) by its most senior great-great-...grandparent. The detailed topology of the tree doesn’t matter at all, as long as we graft each related element onto it somewhere. Therefore, we process each elemental datum “j is equivalent to k” by (i) tracking j up to its highest ancestor, (ii) tracking k up to its highest ancestor, (iii) giving j to k as a new parent, or vice versa (it makes no difference). After processing all the relations, we go through all the elements j and reset their F(j)’s to their highest possible ancestors, which then label the equivalence classes. The following routine, based on Knuth [1], assumes that there are m elemental pieces of information, stored in two arrays of length m, lista,listb, the interpretation being that lista[j] and listb[j], j=1...m, are the numbers of two elements which (we are thus told) are related

点击下载完整版文档(PDF)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
已到末页,全文结束
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有