1)  contingency ranking
偶然事故排序
1.
Combined with performance index which is used in contingency ranking generally with reliability index or economics index to form expectancy of system influence,it can rank the contingencies.
采用间接法对电力系统中的偶然事故进行排序,同时将偶然事故排序中通常采用的系统行为指标同系统的可靠性与经济性指标相结合,形成新的偶然事故对系统影响的期望值,根据新的期望值对偶然事故进行排序,使排序更具有合理性。
2)  contingency
偶然
1.
Only with this method,it is significant to under stand and master the finiteness and infiniteness,contingency and inevitableness of art to create an creative multiform phase of art.
只有“以形写神”,深刻了解和掌握艺术中有限与无限、偶然与必然 ,对今天创造一个万紫千红、百花齐放、富有多样性独创性的艺术形象的苑地 ,有重要的意
2.
Richard Rorty, a master of the new pragmatism, brings forward in his Contingency, Irony, and Solidarity that the self, society, desire, value root in the haphazard history.
新实用主义的大师理查德·罗蒂在《偶然、反讽与团结》中提出,自我、社会、欲望、价 值都是偶然的历史的产物,个人要以此为基础,将社会正义与私人完美结合起来,并减少对别人的残 酷,而这要依仗小说和电影等叙述形式来提升人的敏感度。
3.
,the ideal novel keep the tension between the narrative“form” and the “contingency” of the content,representing the character.
从默多克小说创作的理论渊源入手 ,结合她小说的叙事特点阐明其小说观为 :理想的小说要保持叙事的“形式”和内容的“偶然”之间的张力 ,体现人物的偶然性和特殊
3)  accidentalness
偶然
1.
Kundra is built on his unbearable lightness of being with so many "es muss sein";especially on the reterative betrayal by Sapina and the passable body of Theresa that are constructed by means of fancy-the brilliant female heroines either on a necessity-canoe or the one on an accidentalness-canoe moving between fantasy and reality.
昆德拉之重在于生命不能承受之轻;在于生命中无以数计的“非如此不可”;在于不解之词所诏示的萨比娜的叠加式的背叛;在于镜子所裸现的特蕾莎别样亦可的身体;在于凭藉对残酷现实的幻化所构建的必然之舟上的别样女性与偶然女性。
4)  Accidental error
偶然误差
1.
Analysis and test of data’s accidental errors and systematic errors in marketing research;
数据中偶然误差和系统误差的分析与检验
2.
This paper discusses the method of making accidental error by Montcaro.
笔者讨论了蒙特卡罗法生成偶然误差的原理 ,并用模拟的偶然误差参于大地四边形平差计算 ,其结果与误差传播定律一致 ,从而验证了蒙特卡罗法用于大地四边形模拟计算的可行性 ,为大地四边形的优化提供了一种可行的有效方
3.
Because of fault in operation and the precision of instrument,the defect error and accidental error are involved in the procession of data collection,the defect error that are brought by mistakes of people and influence of outside is large,the contingency error that are inevitably and randomicity is little.
在采集数据过程中,由于某些操作或仪器原因,往往使数据中包含人为错误,或外界干扰产生的量值较大的“过失误差”以及不可避免的带随机性质且量值较小的“偶然误差”。
5)  accidental disaster
偶然灾害
1.
The paper discusses the progress of the research on offshore platform structures subject to accidental disasters such as collision, fire and explosion, and the current research on its risk assessment.
阐述了海洋平台结构在碰撞、火灾和爆炸等偶然灾害作用下的研究进展,以及其风险评估的研究现状,提出了在这些方面今后亟待研究的问题。
6)  to bring something accidentally
偶然带入
参考词条
补充资料:冒泡排序

冒泡排序法

冒泡排序的基本思想是:依次比较相邻的两个数,将大数放在前面,小数放在后面。即首先比较第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、从大到小排序数组a

for i:=1 to 9 do

for j:=1 to 10-i do

if a[j]<a[j+1]

then 交换a[j]与a[j+1]

3、输出排序后的数组a。

程序:

program sort21(input,output);

var

a:array[1..10] of real;

temp:real;

i,j:integer;

begin

for i:=1 to 10 do

begin

read(a);

write(a<i>);

if i mod 5=0 then writeln;

end;

for i:=1 to 9 do

for j:=1 to 10-i do

if a[j]<a[j+1] then

begin

temp:=a[j];

a[j]:=a[j+1];

a[j+1]:=temp;

end;

for i:=1 to 10 do

begin

write(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、从大到小排序数组a

i:=1

repeat

flag:=true;

for j:=1 to 10-i do

if a[j]<a[j+1] then

begin

交换a[k]与a[j]

flag:=false;

end;

i:=i+1;

until flag;

3、输出排序后的数组a

程序:

program sort22(input,output);

var

a:array[1..10] of real;

temp:real;

i,j:integer;

flag:boolean;

begin

for i:=1 to 10 do read(a<i>);

i:=1;

repeat

flag:=true;

for j:=1 to 10-i do

if a[j]<a[j+1] then

begin

temp:=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);

}

从数组的后面位置开始,如果发现有比前面一个位置处的数更小的元素,则把交换这两个数的位置,形成一个类似轻的气泡在水中上升的排序过程.

说明:补充资料仅用于学习参考,请勿用于其它任何用途。