1)marking and queuing评分排序
2)node score sorting节点评分排序
1.This paper takes the capacity of nodes,link bandwidth and re-source access into consideration synthetically,and puts forward a resource awareness model,also performs load balancing based on node score sorting.针对结构化P2P网络采用DHT对资源进行分布式管理,导致负载不均衡和简单抽象的网络参考模型不足以正确反映网络访问状态,综合考虑节点负载能力、链路带宽和资源访问频度,提出资源访问敏感模型,并进行基于节点评分排序的负载均衡,将三个因素作为评判节点综合能力的依据,对资源进行动态分布式管理。
3)synthetical appraisal sortiong评估排序
英文短句/例句
1.Threat Ordering of the Air-raid Targets Threat based on the Rough Set Theory基于粗糙集的空袭目标威胁评估排序
2.Threat Evaluation of Communication Link Based on ANP and Super Decision基于ANP和Super Decision的通信链路威胁评估排序
3.Research on the Model of the Threat Assessment and Sorting of Air Strike Targets Stream空袭目标流威胁评估与排序模型研究
4.Optimal Ranking Method of Air Defense Forces’ Operational Proposal Based on Fuzzy Evaluation基于模糊评估的防空兵作战方案最优排序方法
5.Instructional Sequence and Evaluation for Whole Task--Fourth presentation about Merrill s first principles of instruction;面向完整任务的教学排序与评估——四述梅里尔首要教学原理
6.Method of Air-attack Target Threat and Order Based on Fuzzy-matter Elements Analysis;基于模糊物元分析的空袭目标威胁评估与排序方法
7.Empirical Study on the Determining and Weightiness of Factors and Index Affecting Firm s PD;违约率评估因素与指标确定及其重要度排序实证研究
8.Radiation Threat Evaluation and Sequencing Method Applied to Set Pair Analysis应用集对分析理论的辐射源威胁评估与排序方法
9.Study on the University Scientific Research Performance Appraisal Method based on AC~2R and its effective Ordering Tactics基于AC~2R模型的高校科研绩效评估及有效排序研究
10.Application of Grey TOPSIS to Evaluation of Aerial Targets Threat灰色逼近理想解排序法在目标威胁评估中的应用
11.Review of the Development Characteristics in Assessment of the Ranking Roll of Universities Abroad;对国外大学排行评估发展特点的评述
12.A Comparative Study on Standards and Procedure of Assessing xcellent Teachers between China and America中美优秀教师评估标准与评估程序比较研究
13.program evaluation and review technique (PERT)计划估评法;程序鉴定技术;程序评价和检查技
14.aluation and review technique (PERT)计划估评法;程序鉴定技术;程序评价和检查技术
15.Testing cycles for heavy-duty vehicles is important for assessing exhaust gas emissions and fuel consumption.为了评估车辆尾气排放和燃油经济性。
16.An Application Analysis of Government Performance Measurement in Institutional Arrangement;制度安排下政府绩效评估的应用分析
17.Evaluation on Attack Strength of World Four Best Women Volleyball Teams;世界女子排球4强网上进攻实力评估
18.Effectiveness Evaluation of Artillery Reconnaissance System Based on Queuing Theory基于排队论的炮兵侦察配系效能评估
相关短句/例句
node score sorting节点评分排序
1.This paper takes the capacity of nodes,link bandwidth and re-source access into consideration synthetically,and puts forward a resource awareness model,also performs load balancing based on node score sorting.针对结构化P2P网络采用DHT对资源进行分布式管理,导致负载不均衡和简单抽象的网络参考模型不足以正确反映网络访问状态,综合考虑节点负载能力、链路带宽和资源访问频度,提出资源访问敏感模型,并进行基于节点评分排序的负载均衡,将三个因素作为评判节点综合能力的依据,对资源进行动态分布式管理。
3)synthetical appraisal sortiong评估排序
4)scheduling with batching分组排序
1.This paper considers the one machine scheduling with batching to minimize the number of late jobs.研究了以极小化延误工件个数为目标的单机分组排序问题,证明了该问题是强NP困难的,甚至限定所有工件有单位加工时间和一致的组间调整时间也是如此。
5)Index analysis排序分析
1.The sibship of them was studied by index analysis.通过对箭胡毛杨及其亲本箭杆杨和胡杨聚丙烯酰胺凝胶电泳,分析了过氧化物酶(PER)、酯酶(EST)、苹果酸脱氢酶(MDH)同工酶电泳结果,明确了其酶谱的特征及分布,并通过排序分析方法分析其相互之间的亲缘关系。
6)batch scheduling分批排序
1.Complexity analysis of class of problems on batch scheduling and its approximated algorithm;一类分批排序问题的复杂性分析及近似算法
2.Formulating the batch scheduling with release time as a mathematical programming model;带到达时间分批排序问题的数学模型
3.Using genetic algorithm for single machine solving multiple batch scheduling problem;求解多目标单机分批排序问题
延伸阅读
冒泡排序冒泡排序法冒泡排序的基本思想是:依次比较相邻的两个数,将大数放在前面,小数放在后面。即首先比较第1个和第2个数,将大数放前,小数放后。然后比较第2个数和第3个数,将大数放前,小数放后,如此继续,直至比较最后两个数,将大数放前,小数放后,此时第一趟结束,在最后的数必是所有数中的最小数。重复以上过程,仍从第一对数开始比较(因为可能由于第2个数和第3个数的交换,使得第1个数不再大于第2个数),将大数放前,小数放后,一直比较到最小数前的一对相邻数,将大数放前,小数放后,第二趟结束,在倒数第二个数中得到一个新的最小数。如此下去,直至最终完成排序。由于在排序过程中总是大数往前放,小数往后放,相当于气泡往上升,所以中冒泡排序。用二重循环实现,外循环变量设为i,内循环变量设为j。外循环重复9次,内循环依次重复9,8,...,1次。每次进行比较的两个元素都是与内循环j有关的,它们可以分别用a[j]和a[j+1]标识,i的值依次为1,2,...,9,对于每一个i, j的值依次为1,2,...10-i。算法:1、输入10个数到数组a中2、从大到小排序数组afor i:=1 to 9 dofor j:=1 to 10-i doif a[j]<a[j+1]then 交换a[j]与a[j+1]3、输出排序后的数组a。程序:program sort21(input,output);vara:array[1..10] of real;temp:real;i,j:integer;beginfor i:=1 to 10 dobeginread(a);write(a<i>);if i mod 5=0 then writeln;end;for i:=1 to 9 dofor j:=1 to 10-i doif a[j]<a[j+1] thenbegintemp:=a[j];a[j]:=a[j+1];a[j+1]:=temp;end;for i:=1 to 10 dobeginwrite(a<i>);if i mod 5 =0 then writeln;end;end. 冒泡排序法的改进 **比如用冒泡排序将4、5、7、1、2、3这6个数排序。在该列中,第二趟排序结束后,数组已排好序,但计算机此时并不知道已经反排好序,计算机还需要进行一趟比较,如果这一趟比较,未发生任何数据交换,则知道已排序好,可以不再进行比较了。因而第三趟比较还需要进行,但第四、五趟比较则是不必要的。为此,我们可以考虑程序的优化。为了标志在比较中是否进行了,设一个布尔量flag。在进行每趟比较前将flag置成true。如果在比较中发生了数据交换,则将flag置为false,在一趟比较结束后,再判断flag,如果它仍为true(表明在该趟比较中未发生一次数据交换)则结束排序,否则进行下一趟比较。算法:1、输入10个数到数组中2、从大到小排序数组ai:=1repeatflag:=true;for j:=1 to 10-i doif a[j]<a[j+1] thenbegin交换a[k]与a[j]flag:=false;end;i:=i+1;until flag;3、输出排序后的数组a程序:program sort22(input,output);vara:array[1..10] of real;temp:real;i,j:integer;flag:boolean;beginfor i:=1 to 10 do read(a<i>);i:=1;repeatflag:=true;for j:=1 to 10-i doif a[j]<a[j+1] thenbegintemp:=a[j];a[j]:=a[j+1];a[j+1]:=temp;flag:=false;end;i:=i+1;until flag;for i:=1 to 10 do write(a<i>,' ');end.void bubblesort(type* arr,long len)/*bubble sort algorithm*/{long i=0,j=0;/*iterator value*/assertf(arr!=null,"in bubble sort,arr is null\n");for (i=len;i>1;i--)for(j=0;j<i-1;j++)if(arr[j]>arr[j+1])swaparrdata(arr,j,j+1);}从数组的后面位置开始,如果发现有比前面一个位置处的数更小的元素,则把交换这两个数的位置,形成一个类似轻的气泡在水中上升的排序过程.