solve readers-writers problem with RMI
标签: readers-writers problem solve with
上传时间: 2014-01-10
上传用户:远远ssad
硬盘维修的绝密资料_harddisk fixed is no problem.
上传时间: 2014-06-09
上传用户:gxf2016
1、创建一个数据库 名称为 student,主数据文件:student.mdf,逻辑名称:student_data,初始大小:15MB,最大大小:100MB,增长率:15%。日志文件:student_log,物理文件名:student.ldf,初始大小:10MB,最大大小:20M,增长速度:2M 2、修改上述数据库: 增较一个不同路径的辅助数据文件,参数同主数据文件一致。 修改新增的数据文件大小为10M 3、在建立好的数据库内,分析试验内容要求,根据E-R模型建立对应的表 3.1 在插入简单数据基础上,做如下查询 (1)查询全部学生的信息 (2)查询0101班男性同学的信息 (3)查询女性副教授教师信息,以年龄排序 (4)查询年龄在35岁以上的教师信息 (5)查询张大为所开设课题的信息 (6)查询学生选课的门数以及平均分数 (7)查询每个学生的均分,最高分,最低分,总分、 (8)查询每个教师所开课程的所有学生的总分以及均分 (9)统计选了教师 李丽 课题的学生人数 (10)查询女性,名字中含有‘丽’的同学信息 (11)查询83年以后出生的男同学信息 (12)查询课题设计时间大于2个月的课题信息 (13)统计选择“数据仓库”学生的人数 (14)分班级统计至少选了3门课程的学生
上传时间: 2016-03-22
上传用户:独孤求源
IDL Version 6.4, Microsoft Windows (Win32 x86 m32). (c) 2007, ITT Visual Information Solutions Installation number: 20090909. Licensed for use by: Lz0
标签: Information Microsoft Solutions Version
上传时间: 2013-12-25
上传用户:sdq_123
优化算法loqo的算法源代码。Purpose: solves quadratic programming problem for pattern recognition for support vectors
标签: programming recognition for quadratic
上传时间: 2016-04-09
上传用户:er1219
Problem D:合唱队形 Time Limit:1000MS Memory Limit:65536K Total Submit:1237 Accepted:437 Language: not limited Description N位同学站成一排,音乐老师要请其中的(N-K)位同学出列,使得剩下的K位同学排成合唱队形。 合唱队形是指这样的一种队形:设K位同学从左到右依次编号为1,2…,K,他们的身高分别为T1,T2,…,TK, 则他们的身高满足T1 < T2 < ...< Ti > Ti+1 > … >TK(1<=i<=K)。 你的任务是,已知所有N位同学的身高,计算最少需要几位同学出列,可以使得剩下的同学排成合唱队形。 Input 输入包含若干个测试用例。 对于每个测试用例,输入第一行是一个整数N(2<=N<=100),表示同学的总数。第二行有N个整数,用空格分隔,第i个整数Ti(130<=Ti<=230)是第i位同学的身高(厘米)。当输入同学总数N为0时表示输入结束。 Output 对于每个测试案例,输出包括一行,这一行只包含一个整数,就是最少需要几位同学出列。 Sample Input 8 186 186 150 200 160 130 197 220 3 150 130 140 0 Sample Output 4 1
标签: Limit Accepted Language Problem
上传时间: 2014-01-13
上传用户:aappkkee
Problem F:汽车加油 Time Limit:1000MS Memory Limit:65536K Total Submit:1400 Accepted:404 Language: not limited Description 一辆汽车加满油后可行驶n公里。旅途中有若干个加油站。设计一个有效算法,指出应在哪些加油站停靠加油,使沿途加油次数最少。 编程任务: 对于给定的n和k(k <= 10000)个加油站位置,编程计算最少加油次数。 Input 第一行有2 个正整数n和k,表示汽车加满油后可行驶n公里,且旅途中有k个加油站。接下来的1 行中,有k+1 个整数,表示第k个加油站与第 k-1 个加油站之间的距离。第0 个加油站表示出发地,汽车已加满油。第k+1 个加油站表示目的地。 Output 输出最少加油次数。如果无法到达目的地,则输出”No Solution”。 Sample Input 7 7 1 2 3 4 5 1 6 6 Sample Output 4
标签: Limit Accepted Language Problem
上传时间: 2016-04-12
上传用户:youth25
编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct student *head),输出链表,格式每行一个结点,包括学号,姓名,分数。 (3).编写函数struct student * merge(struct student *a,struct student *b), 将已知的a,b两个链表 按学号升序合并,若学号相同则保留成绩高的结点。 (4).编写函数struct student * del(struct student *a,struct student *b),从a链表中删除b链表中有 相同学号的那些结点。 (5).编写main函数,调用函数creat建立2个链表a,b,用print输出俩个链表;调用函数merge升序合并2个 链表,并输出结果;调用函数del实现a-b,并输出结果。 a: 20304,xxxx,75, 20311,yyyy,89 20303,zzzz,62 20307,aaaa,87 20320,bbbb,79 b: 20302,dddd,65 20301,cccc,99 20311,yyyy,87 20323,kkkk,88 20307,aaaa,92 20322,pppp,83
上传时间: 2016-04-13
上传用户:zxc23456789
可以利用已有的Student类,以Student类为父类建立子类Graduate.
上传时间: 2016-04-18
上传用户:huannan88
北京大学ACM题 Here is a geometric problem. You have an angle and some squares in the first quadrant of the plane rectangular coordinates. The vertex of the angle is fixed on the origin O of the coordinates, and both of its radial lines are specified by the input. The sizes of the squares are also specified by the input, and the squares can shift vertically and horizontally. Now your job is to use the squares and the radial lines of the angle to enclose the maximum area, which excludes the area of the squares (see Figure 1). You should note that the edges of the squares must be parallel to the axes.
标签: geometric quadrant problem squares
上传时间: 2013-12-25
上传用户:ynzfm