方案排序,alternative ranking
1)alternative ranking方案排序
1.Therefore this paper studies the theory and methods for consistency analysis of expert group’s judgments and alternative ranking based on uncertain preference information in GDM.为此本文对群决策中不确定偏好信息的方案排序问题和专家群体判断一致性问题进行了相应的理论与方法研究,主要工作概括如下:针对群决策中的方案排序问题,通过定义序区间的可能度和互反的可能度矩阵,给出了基于序区间偏好信息的方案排序方法。
英文短句/例句

1.Application of Schemes Sorting Method for Assessing and Selecting Schemes of The Hainan Middle Line Expressway方案排序法在中线高速方案比选中的应用
2.Priority Method Based on Satisfying Consistency of Fuzzy Judgement Matrix;基于模糊判断矩阵满意一致性的方案排序研究
3.Consistency Coordination for Judgment and the Projects Ranking in the Group Decision Making;群组决策中判断的一致性协调与方案排序
4.A Method of Ranking Alternatives in Multiple Attribute Decision Making with Incomplete Information;不完全信息的多属性决策问题的方案排序
5.Sensitivity analysis of alterenatives′ ranking results associated with the change of weight proportion;方案排序对权重比例变化的敏感性分析
6.The Prioritizing Research on the Schemes of Camouflage for Aerodrome Based on the MADM基于多属性决策的机场伪装工程方案排序
7.Alternatives Ranking in Preference Ordering-Based Group Decision Making: Complementary Judgment Matrix Approach判断信息为偏好序的群决策方案排序:互补判断矩阵法
8.A New Method for Ranking Based on Linguistic Judgment Matrices in Group Decision Making一种基于语言判断矩阵的群决策方案排序新方法
9.The article mainly discusses the methods of creating a consistency dif ference matrix and hence the difference vector is obtained .最后对差异向量进行数学处理,得到方案排序的权重向量。
10.The Fully Cycle Extensibility of K_(1,4)-restricted Graphs and Methods for Ranking in Multi-attribute Decision-making;K_(1,4)-受限图的完全圈可扩性与多属性决策的方案排序
11.Application of TOPSIS for Arraying the Air-Defense Operation Deployment Schemes;逼近理想点法在防空兵战斗部署方案排序中的应用
12.The Equilibrium of the Two-way permutation Cannot Guarantee the Best Scheme;论双向排序均衡法不能保证方案最优
13.Fuzzy PROMETHEE for Environmental Assessment of Construction Project;建设项目方案环境影响的模糊PROMETHEE排序
14.Optimal Ranking Method of Air Defense Forces’ Operational Proposal Based on Fuzzy Evaluation基于模糊评估的防空兵作战方案最优排序方法
15.Synthetically Sorting Model on Green Design Schemes;绿色设计方案优选的多指标综合排序法
16.Study on the fuzzy interval evaluation and weighted ranking for EPS schemes汽车EPS方案的模糊区间评价与加权排序研究
17.Study on the Fuzzy Evaluation and Ranking for Electric Power Steering Schemes汽车EPS方案的模糊综合评价与排序研究
18.A Study on the Linear Ordering of Syntactic Structures under the Framework of Minimalist Program最简方案框架下的句法结构线性排序研究
相关短句/例句

alternatives ranking方案排序
3)ordering scheme排序方案
1.Even the hermiticity requirement is considered,various ordering schemes may still lead to different numerical results.指出即使考虑了厄米性的要求 ,各种排序方案仍然会导致有很大差别的数值结果 ,会严重影响谱的拟合精度 。
4)number of schemes for scheduling排序方案数
5)the project queuing method方案排序法
6)alternative selection and ranking方案选择和排序
延伸阅读

冒泡排序冒泡排序法冒泡排序的基本思想是:依次比较相邻的两个数,将大数放在前面,小数放在后面。即首先比较第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);}从数组的后面位置开始,如果发现有比前面一个位置处的数更小的元素,则把交换这两个数的位置,形成一个类似轻的气泡在水中上升的排序过程.