亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

4<b>7</b>5

  • c語言的數學實驗報告 (該程序經過調試成功后能實現五項功能:1

    c語言的數學實驗報告 (該程序經過調試成功后能實現五項功能:1,解n階行列式;2,解n階線性方程; 3,求矩陣相乘;4,求矩陣;5,退出) 交作業好用

    標簽: c語言 實驗報告 程序 調試

    上傳時間: 2014-01-12

    上傳用戶:aysyzxzm

  • Struts 文章系統是一個基于Struts的文章管理系統

    Struts 文章系統是一個基于Struts的文章管理系統,使用MySQL數據庫,具有以下功能: 1、支持國際化 2、Web編輯器方式發表文章 3、分類管理 4、文章管理 5、文章搜索

    標簽: Struts 管理系統

    上傳時間: 2014-11-28

    上傳用戶:cazjing

  • JAVA程序員必讀

    JAVA程序員必讀,本JAVA教程將討論JAVA編程語言的基礎知識。其中內容涉及以下幾個方面: 1.面向對象編程概念 2.語言基礎 3.對象和簡單數據對象 4.類和繼承 5.接口和包 6.編程中的一些共同的問題

    標簽: JAVA 程序員

    上傳時間: 2015-05-10

    上傳用戶:330402686

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • 著名的嵌入式操作系統uC/OS的完整內核源代碼

    著名的嵌入式操作系統uC/OS的完整內核源代碼,內核版本號2.52。 該源代碼主要包括如下幾個方面: 1、任務管理 2、消息郵箱 3、消息隊列 4、信號量 5、事件管理 6、內存管理

    標簽: uC OS 嵌入式操作系統 內核

    上傳時間: 2014-01-12

    上傳用戶:qweqweqwe

  • 源代碼用動態規劃算法計算序列關系個數 用關系"<"和"="將3個數a

    源代碼\用動態規劃算法計算序列關系個數 用關系"<"和"="將3個數a,b,c依次序排列時,有13種不同的序列關系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要將n個數依序列,設計一個動態規劃算法,計算出有多少種不同的序列關系, 要求算法只占用O(n),只耗時O(n*n).

    標簽: lt 源代碼 動態規劃 序列

    上傳時間: 2013-12-26

    上傳用戶:siguazgb

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標簽: government streamline important alphabet

    上傳時間: 2015-06-09

    上傳用戶:weixiao99

  • 實現背包問題 package problem 1. 問題描述 假設有一個能裝入總體積為T的背包和n件體積分別為w1 , w2 , … , wn 的物品

    實現背包問題 package problem 1. 問題描述 假設有一個能裝入總體積為T的背包和n件體積分別為w1 , w2 , … , wn 的物品,能否從n件物品中挑選若干件恰好裝滿背包,即使w1 +w2 + … + wn=T,要求找出所有滿足上述條件的解。例如:當T=10,各件物品的體積{1,8,4,3,5,2}時,可找到下列4組解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 讀入T、n、w1 , w2 , … , wn 3.提示: 可利用遞歸方法:若選中w1 則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T- w1 ,若不選中w1,則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T 。依次類推。 也可利用回溯法的設計思想來解決背包問題。首先將物品排成一列,然后順序選取物品裝入背包,假設已選取了前i 件物品之后背包還沒有裝滿,則繼續選取第i+1件物品,若該件物品“太大”不能裝入,則棄之而繼續選取下一件,直至背包裝滿為止。但如果在剩余的物品中找不到合適的物品以填滿背包,則說明“剛剛”裝入背包的那件物品“不合適”,應將它取出“棄之一邊”,繼續再從“它之后”的物品中選取,如此重復,,直至求得滿足條件的解,或者無解。 注:沒壓縮密碼

    標簽: package problem 體積 w2

    上傳時間: 2014-01-18

    上傳用戶:yxgi5

  • 電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動

    電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動,計算電力系統所有發電機能否同步運行 1運行說明: 請輸入初始功率S0,形如a+bi 請輸入無限大系統母線電壓V0 請輸入系統等值電抗矩陣B 矩陣B有以下元素組成的行矩陣 1正常運行時的系統直軸等值電抗Xd 2故障運行時的系統直軸等值電抗X d 3故障切除后的系統直軸等值電抗 請輸入慣性時間常數Tj 請輸入時段數N 請輸入哪個時段發生故障Ni 請輸入每時段間隔的時間dt

    標簽: 電力系統 計算 運行

    上傳時間: 2015-06-13

    上傳用戶:it男一枚

  • 固定資產管理系統

    固定資產管理系統, 1:c++信息開發 2.數據庫類型:SQL Server 3.連接方式:ADO 4.用戶名:mrkj 5.密碼:

    標簽: 管理系統

    上傳時間: 2014-11-18

    上傳用戶:hjshhyy

主站蜘蛛池模板: 涪陵区| 大洼县| 安陆市| 凤城市| 习水县| 潢川县| 扎囊县| 寻乌县| 贵南县| 麻江县| 库伦旗| 肇东市| 贵溪市| 新竹市| 二手房| 正蓝旗| 遂昌县| 家居| 恩施市| 霍山县| 大连市| 崇礼县| 淮南市| 浏阳市| 福泉市| 雷山县| 互助| 重庆市| 花莲县| 富裕县| 黑河市| 砚山县| 建水县| 明溪县| 大埔县| 青铜峡市| 兴城市| 东乌珠穆沁旗| 孟连| 额尔古纳市| 水富县|