分组排序,scheduling with batching
1)scheduling with batching分组排序
1.This paper considers the one machine scheduling with batching to minimize the number of late jobs.研究了以极小化延误工件个数为目标的单机分组排序问题,证明了该问题是强NP困难的,甚至限定所有工件有单位加工时间和一致的组间调整时间也是如此。
英文短句/例句

1.Random Ground-holding Model Based on Grouped Scheduling基于分组排序的随机性地面等待模型
2.On the Principle and Reason for Chinese Compound Structural Order;并列结构组成成分排序原则及原因初探
3.The study and analysis of construction organization coordination and procedure arrangement of indoor decoration室内装修施工组织协调和工序安排研究分析
4.Select fields in the order you want information sorted. For example, you could sort and group values by Country and then Region.请按照所需的信息排序顺序选择字段。例如,可以先按国家再按地区对值进行排序和分组。
5.grouped according to the classes of the Nice Classification, and each group shall be preceded by the number of the class of that Classification按《尼斯分类》的类别分组并按该分类的类别顺序排列
6.The Controllable Batch Scheduling and Supply Chain Scheduling Problems;可控分批排序及供应链排序问题研究
7.Scheduling a Batching Machine and On-line Scheduling on Parallel Machines;单机分批排序和平行机在线排序问题
8.If you want to sort the subtotaled groups collapse the outline and try again.如果您想对分类汇总数据组进行排序,请折叠分级显示并重试一次。
9.Research on Chinese Text Classification Based on Sentence Ranking and Combinational Classification;基于句子排序和组合分类的中文文本分类方法研究
10.Create a view by specifying the input tables/queries, field names, filters, and grouping properties.通过指定输入表/查询、字段名称、过滤器和排序/分组属性创建视图。
11.Create a query by specifying the input tables/queries, field names, filters, and sorting/grouping properties.通过指定输入表/查询、字段名称、筛选和排序/分组属性创建查询。
12.Still, a large amount of sequence in these genomes falls under no existing classification other than "junk".然而,这些基因组的大量排序没有成为而非“垃圾”的现今分类。
13.With a computer program, the course grouping and arrangement can be effectively implemented.借助于计算机程序,清考中的课程分组和考试安排可以高效地实现。
14.%3 results returned, showing items %1 - %2, sorted by %4, grouped by %5.返回%3个结果,显示第%1-%2个项目,按%4排序,按%5分组。
15.More than %3 results returned, showing items %1 - %2, sorted by %4, grouped by %5.返回多于%3个结果,显示第%1-%2个项目,按%4排序,按%5分组。
16.System Compartition and Module Sorting Algorithm of Diagram Configuration Simulation Software图形组态仿真软件系统分隔与模块排序算法研究
17.On Several Problems of Batch Scheduling, Scheduling with Rejection and Scheduling with Discretely Processing Times;分批排序、可拒绝排序及离散可控排序中的若干问题
18.To change the order of tasks when they aren't grouped or sorted, just drag tasks up or down in the task list.在任务还没有被分组或排序时,要更改任务的顺序,只需在任务列表中,将任务上下拖动。
相关短句/例句

group topological sorting分组拓朴排序
1.The group topological sorting concept of directed graph was presented in the paper and the paralled arrangement was worked out by topological sequence.为此 ,提出有向图的分组拓朴排序概念 ,得到的分组拓朴序列解决了任务的并行安排问题 。
3)grouping compositor message分组排序信息
1.The grouping compositor message passing between MN and NAR achieves the zero package losing rates in MIP handover.文章通过对已有增强TCP性能的方案分析,提出了一种改进的移动IP缓存转发机制,借助于分组排序信息在MN与NAR间的传递实现切换过程中的零丢包率,同时根据切换过程的不同情况,得到最佳缓存器容量。
4)grading sorting algorithm分组排序算法
1.In this paper, a finite grading sorting algorithm is given.本文给出一种有限次分组快速排序算法并证明该排序算法处理均匀分布数据记录,正态分布数据记录及一般概率分布数据记录的平均时间复杂性为O(N);给出四种快速排序算法分别关于均匀分布数据记录,正态分布数据记录,均匀波浪式分布数据记录和异常分布数据记录,进行排序的实验结果,表明有限次分组排序算法具有更快的效
5)content grouping and sequence内容分组与排序
6)array sorting数组排序
1.This paper presents a new algorithm for array sorting and an analysis of its complexity of calculation in the worst situation.提出一种新的数组排序法 ,分析了该算法在最坏情况下的计算复杂度。
延伸阅读

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