排序,scheduling
1)scheduling[英]['sked?ul][美]['sk?d??l]排序
1.Optimal scheduling of multi-product batch chemical process with consideration of energy consumption;考虑能耗影响的多产品间歇化工过程优化排序
2.Multi-rule single machine scheduling with discretely controllable processing times;离散加工时间单机多准则下可控排序问题
3.Single-machine with position-dependent processing times of jobs in group technology scheduling;加工时间依赖工件位置的单机成组排序问题
英文短句/例句

1.9.1.3 Sorting Details9.1.3 排序细节
2.Undo\0Remove\0Sort Ascending\0Sort Descending撤消\0删除\0升序排序\0降序排序
3.Click Sort Ascending or Sort Descending.单击“升序排序”或“降序排序”。
4.To sort in ascending order, click Sort Ascending.若要按升序排序,请单击“升序排序”。
5.Sarah is writing a report.四、听录音,排序号。
6.generalized sort/merge program通用排序/合并程序
7.The specified sort order is not valid. Specify a valid sort order.指定的排序次序无效。请指定有效的排序次序。
8.Temporary sort tables resulting when sorting functions are launched.临时排序桌收效当排序作用被发射。
9.The Controllable Batch Scheduling and Supply Chain Scheduling Problems;可控分批排序及供应链排序问题研究
10.Scheduling a Batching Machine and On-line Scheduling on Parallel Machines;单机分批排序和平行机在线排序问题
11.Select the fields to sort by, their sort order, and their sort direction.请选择排序所依据的字段、这些字段的排序次序及其排序方向。
12.Ordering specifies the sequence to use for ordering the members of a level.排序依据指定了对级别成员排序时所用的序列。
13.Specify Sort Criteria: Select the fields to sort by, their sort order, and their sort direction.指定排序条件: 请选择排序所依据的字段、这些字段的排序次序及其排序方向。
14.Drag to add an ordering idea to an ordering theme; ordering idea is automatically sent to the back.拖动以将排序想法添加到排序主题上;排序想法自动被发送到后面。
15.Collation conflict caused by collate clauses with different collation '%.*ls' and '%.*ls'.排序规则冲突,原因为排序子句采用不同的排序规则''%1!''和''%3!''。
16.The experiment result has proved that the sort algorithms can not only be used in the static sort bwt also appropriated to dynamic.而且,排序算法不仅适宜规则静态排序,也适宜规则动态排序
17.On Several Problems of Batch Scheduling, Scheduling with Rejection and Scheduling with Discretely Processing Times;分批排序、可拒绝排序及离散可控排序中的若干问题
18.Find finds a row based on a Sort order, and no Sort order is specified.查找基于排序顺序来查找行,但未指定任何排序顺序。
相关短句/例句

Ranking[英]['r??k??][美]['r??k??]排序
1.Fuzzy ranking methodology for risk assessment of hiding pollution accidents in chemical plants;工厂重大环境污染事故风险模糊排序方法
2.A term co-occurrence algorithm and the effect of co-occurrence terms on result ranking for information retrieval;一种词汇共现算法及共现词对检索系统排序的影响
3.Fuzzy ratio method for ranking of multi-radiant imperilment;辐射源威胁大小综合排序的模糊相对比值法
3)sorting[英][s?:t][美][s?rt]排序
1.Application of the concept of Entropy in the research of the sorting algorithms;应用信息熵原理研究排序算法的效率
2.Study on compare and selection of sorting algorithm;排序算法的比较与选择研究
3.Study of Sorting and Generating All-Permutations;排序算法与全排列生成算法研究
4)Sequencing[英]['si:kw?nsi?][美]['sikw?ns??]排序
1.Development of Blin method and its application in trap sequencing;Blin法的发展及在圈闭排序中的应用
2.Hybrid genetic algorithms for sequencing problems in mixed model assembly lines;基于混合遗传算法的混合装配线排序问题研究
3.Study on multiple objects optimization of mixed-model assembly sequencing problem;多目标混流装配计划排序问题
5)sort[英][s?:t][美][s?rt]排序
1.A Mongolian Word-sorting Algorism Based on Mealy Machine;基于Mealy机的蒙古文排序算法
2.Sorting and Optimization in Program Designing;程序设计中的排序及优化
3.Random sort and its algorithm establishment;随机排序的一种算法及其在准考证号生成中的应用
6)ordering[英]['?:d?r??][美]['?rd?r??]排序
1.A new method for bidding decision making ——The ordering method;投标决策的一种新方法——排序
2.A new method of ordering in AHP;层次分析法中排序的一种新方法
3.Research on ordering of cut sets of fault tree analysis;故障树分析中底事件排序问题的研究
延伸阅读

排序  将文件中的各个记录按关键字值(见数据查找)的递升或递降次序重新排列成为一个新的记录序列,这是数据处理的一项基本功能。经过排序的文件便于分类比较或进一步处理。例如,对于一个未经排序的文件,在查毕整个文件之前不能判定某个给定的关键字值确实不在该文件中。组织排序之后,则无需查毕整个文件就能作出这一判断。排序是数据处理,特别是批处理任务中最常用的操作之一。对计算机内存储器中的记录进行排序称为内排序。对存储在外部设备中的文件记录排序称为外排序,外排序需要以内存储器作为过渡介质来进行。    内排序  常用的内排序有三种算法。    ①线性查找排序算法 以线性查找法为基础的排序算法。在内存储器中确定一个与被排序文件同样大小的区域作为新区,用线性查找法在原文件中找出具有最小(或最大)关键字值的记录,放入新区第一记录位置,再从原文件中找出第二个最小(或最大)关键字值的记录,放入新区第二个记录位置。重复上述过程,直至原文件中所有记录都已放入新区为止。这种算法简单,但效率很低,只适于对少量记录的排序。    ②互换排序算法 对原文件中不合指定顺序的两相邻记录互换位置。有三种互换算法。a.线性查找互换算法:将第一记录逐一与其后面的记录比较,并与较小关键字值的记录互换,结果使最小关键字值的记录处于第一记录位置。然后从第二记录开始,重复上述过程,使第二小关键字值记录处于第二记录位置。如此继续,直到关键字值最大的记录处于最后记录位置为止。b.相邻比较互换算法:将相邻记录比较,并按指定次序互换其位置。第一个记录和第二个记录比较,第二个和第三个比较,直到倒数第二个和最后一个比较。从头到尾算完一遍,然后进行第二遍,直至某一遍没有一个比较需要互换位置时为止。c.起泡互换排序算法:首先将第二个记录与第一个记录比较,必要时互换。然后将第三个记录与第二个记录比较,必要时互换。若互换,则新的第二个记录与第一个记录比较,必要时互换。第三个记录再与第二个记录比较,重复上述过程。使一个记录如同起泡一样,上升到适当的位置,在它上面再没有关键字值比它大(或小)的记录。直到最后一个记录经过比较而不再上升为止。    ③合并排序算法 先将文件中的各个记录分为合乎次序的若干组,然后分别两组两组地合并,使组数减少一半;再如此继续合并,直到全部合为一组为止。    外排序  外排序包括两个步骤。①把要排序的文件中的一组记录读入内存储器的排序区,对读入的记录按上面讲到的内排序法进行排序,排序之后输出到外存储器。重复这一过程,每次一组,直到原文件所有记录被处理完毕。②将上一步分组排好序的记录两组两组地合并排序。在内存容量允许的条件下,每组中包含的记录越大越好,这样可减少合并的次数。