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、創(chuàng)建一個數(shù)據(jù)庫 名稱為 student,主數(shù)據(jù)文件:student.mdf,邏輯名稱:student_data,初始大小:15MB,最大大小:100MB,增長率:15%。日志文件:student_log,物理文件名:student.ldf,初始大小:10MB,最大大小:20M,增長速度:2M 2、修改上述數(shù)據(jù)庫: 增較一個不同路徑的輔助數(shù)據(jù)文件,參數(shù)同主數(shù)據(jù)文件一致。 修改新增的數(shù)據(jù)文件大小為10M 3、在建立好的數(shù)據(jù)庫內(nèi),分析試驗內(nèi)容要求,根據(jù)E-R模型建立對應的表 3.1 在插入簡單數(shù)據(jù)基礎上,做如下查詢 (1)查詢?nèi)繉W生的信息 (2)查詢0101班男性同學的信息 (3)查詢女性副教授教師信息,以年齡排序 (4)查詢年齡在35歲以上的教師信息 (5)查詢張大為所開設課題的信息 (6)查詢學生選課的門數(shù)以及平均分數(shù) (7)查詢每個學生的均分,最高分,最低分,總分、 (8)查詢每個教師所開課程的所有學生的總分以及均分 (9)統(tǒng)計選了教師 李麗 課題的學生人數(shù) (10)查詢女性,名字中含有‘麗’的同學信息 (11)查詢83年以后出生的男同學信息 (12)查詢課題設計時間大于2個月的課題信息 (13)統(tǒng)計選擇“數(shù)據(jù)倉庫”學生的人數(shù) (14)分班級統(tǒng)計至少選了3門課程的學生
標簽: student 數(shù)據(jù)庫
上傳時間: 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
優(yōu)化算法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 輸入包含若干個測試用例。 對于每個測試用例,輸入第一行是一個整數(shù)N(2<=N<=100),表示同學的總數(shù)。第二行有N個整數(shù),用空格分隔,第i個整數(shù)Ti(130<=Ti<=230)是第i位同學的身高(厘米)。當輸入同學總數(shù)N為0時表示輸入結束。 Output 對于每個測試案例,輸出包括一行,這一行只包含一個整數(shù),就是最少需要幾位同學出列。 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公里。旅途中有若干個加油站。設計一個有效算法,指出應在哪些加油站停靠加油,使沿途加油次數(shù)最少。 編程任務: 對于給定的n和k(k <= 10000)個加油站位置,編程計算最少加油次數(shù)。 Input 第一行有2 個正整數(shù)n和k,表示汽車加滿油后可行駛n公里,且旅途中有k個加油站。接下來的1 行中,有k+1 個整數(shù),表示第k個加油站與第 k-1 個加油站之間的距離。第0 個加油站表示出發(fā)地,汽車已加滿油。第k+1 個加油站表示目的地。 Output 輸出最少加油次數(shù)。如果無法到達目的地,則輸出”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).編寫函數(shù)struct student * creat(int n),創(chuàng)建一個按學號升序排列的新鏈表,每個鏈表中的結點中 的學號、成績由鍵盤輸入,一共n個節(jié)點。 (2).編寫函數(shù)void print(struct student *head),輸出鏈表,格式每行一個結點,包括學號,姓名,分數(shù)。 (3).編寫函數(shù)struct student * merge(struct student *a,struct student *b), 將已知的a,b兩個鏈表 按學號升序合并,若學號相同則保留成績高的結點。 (4).編寫函數(shù)struct student * del(struct student *a,struct student *b),從a鏈表中刪除b鏈表中有 相同學號的那些結點。 (5).編寫main函數(shù),調(diào)用函數(shù)creat建立2個鏈表a,b,用print輸出倆個鏈表;調(diào)用函數(shù)merge升序合并2個 鏈表,并輸出結果;調(diào)用函數(shù)del實現(xiàn)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