说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 多序操作
1)  multiple sequence operation
多序操作
2)  multi-button sequence
多按钮操作程序
3)  operations sequencing
操作排序
1.
To get the global optimal process plan,a synthesizing optimization approach for machining scheme selection and operations sequencing based on genetic algorithm(GA) was proposed.
为了得到全局最优工艺计划,提出一种基于遗传算法的可行加工方案选择与操作排序综合优化方法。
4)  Operation procedure
操作程序
1.
This paper introduces the technique of job hazard analysis, analyses with an example and gives the ideas of establishing operation procedures by integrating the measures into operations.
介绍了工作危害分析方法,列举实例进行分析,并提出了将控制措施融入操作程序中的思路。
2.
Normalized operation procedures are key of jet fuel quality control during shipment.
规范的操作程序是船运航煤质量控制的关键。
3.
This paper sketches experience in the operation procedure of circulating fluid-bed boiler,proposing to regulate steam temperature in advance,balancing water level regulation,quantifying coal supply regulation,discharging waste frequently and in small amount and dischanging ash in time.
简述了循环流化床锅炉操作程序的体会,并提出汽温调节要提前、水位调节要均衡、给煤调节要量化、放渣操作要勤少与放灰操作要及时五项措施以及保证料层、风量、氧量、床温与汽压稳定五项目标,在生产中起到了良好的作用。
5)  operating procedures
操作程序
1.
A three-tier formal data matrix based on the two-step quantitative planning strategy is proposed in this paper to support planning of operating procedures.
为设计稳定、优化的化工操作程序,提出全新的基于两步法的三层标准数据矩阵综合操作程序方法。
2.
From risk management techniques,the paper identifies,distinguishes the risks in the organizations of outdoor sports,as well as the efficient methods to tackle with them according to the traits of the outdoor sports and the organizations,thus establishing a series of standard operating procedures on the risk management of outdoor sports organizatio.
采用参与观察法、专家访谈法、文献资料法对户外运动俱乐部活动的组织风险管理进行研究,运用风险管理技术,结合户外运动及户外活动组织的特点,对户外活动组织中的风险进行确认、区分和选择有效的处理风险方式,旨在建立一套标准的户外运动俱乐部活动组织的风险管理操作程序。
6)  Operation sequence
操作程序
1.
On the basis of the System Non-optimum Theory and the forewarning management principle, a frame of the forewarning management system of civil aviation transportation disasters are discussed on an airline company, concerning such aspects as the guiding ideology, work content, operation model and operation sequence etc.
本文基于系统非优理论和预警管理原理,以航空公司为主体,探讨了民航交通灾害预警管理系统的指导思想、工作内容、运转模式与操作程序。
2.
This article defined the teaching model of open experiments and then analyzed its six structural elements,including theoretical basis,teaching aims,operation sequence,the roles of teachers and students,teaching tactics and assessment.
文章首先界定了开放性实验教学模式涵义,接着分析了开放性实验教学模式的六个构成要素:理论基础、教学目标、操作程序、师生角色、教学策略及评价,并绘制了其中的操作程序图。
3.
, all kinds of innovative skills and techniques have its clear basic principle and operation sequence.
列举法是一种成熟的创新技法,包括特性列举法、缺点列举法、希望点列举法三类,各类创新技法有其明确的基 本原理和操作程序。
补充资料:冒泡排序

冒泡排序法

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

}

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

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