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

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

VB <b>p2p</b>聯(lián)網(wǎng)的實現(xiàn)

  • VB+Access 學生選課系統

    VB+Access 學生選課系統,實現教學上的方便,為廣大師生提供一個良好的平臺。

    標簽: Access VB

    上傳時間: 2015-03-22

    上傳用戶:xieguodong1234

  • 所有我收藏的VB技巧

    所有我收藏的VB技巧,值得收藏,用HTML網頁的形式發布,適合VB初學者!

    標簽:

    上傳時間: 2014-01-01

    上傳用戶:tuilp1a

  • 如果整數A的全部因子(包括1

    如果整數A的全部因子(包括1,不包括A本身)之和等于B;且整數B的全部因子(包括1,不包括B本身)之和等于A,則將整數A和B稱為親密數。求3000以內的全部親密數。 *題目分析與算法設計 按照親密數定義,要判斷數a是否有親密數,只要計算出a的全部因子的累加和為b,再計算b的全部因子的累加和為n,若n等于a則可判定a和b是親密數。計算數a的各因子的算法: 用a依次對i(i=1~a/2)進行模運算,若模運算結果等于0,則i為a的一個因子;否則i就不是a的因子。 *

    標簽: 整數

    上傳時間: 2015-04-24

    上傳用戶:金宜

  • 數字運算

    數字運算,判斷一個數是否接近素數 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

  • 任意給定點坐標

    任意給定點坐標,可以擬合出B樣條曲線,用Matlab寫的,算法明確。

    標簽: 定點

    上傳時間: 2015-05-25

    上傳用戶:kernaling

  • 源代碼用動態規劃算法計算序列關系個數 用關系"<"和"="將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

  • LCS(最長公共子序列)問題可以簡單地描述如下: 一個給定序列的子序列是在該序列中刪去若干元素后得到的序列。給定兩個序列X和Y

    LCS(最長公共子序列)問題可以簡單地描述如下: 一個給定序列的子序列是在該序列中刪去若干元素后得到的序列。給定兩個序列X和Y,當另一序列Z既是X的子序列又是Y的子序列時,稱Z是序列X和Y的公共子序列。例如,若X={A,B,C,B,D,B,A},Y={B,D,C,A,B,A},則序列{B,C,A}是X和Y的一個公共子序列,但它不是X和Y的一個最長公共子序列。序列{B,C,B,A}也是X和Y的一個公共子序列,它的長度為4,而且它是X和Y的一個最長公共子序列,因為X和Y沒有長度大于4的公共子序列。 最長公共子序列問題就是給定兩個序列X={x1,x2,...xm}和Y={y1,y2,...yn},找出X和Y的一個最長公共子序列。對于這個問題比較容易想到的算法是窮舉,對X的所有子序列,檢查它是否也是Y的子序列,從而確定它是否為X和Y的公共子序列,并且在檢查過程中記錄最長的公共子序列。X的所有子序列都檢查過后即可求出X和Y的最長公共子序列。X的每個子序列相應于下標集{1,2,...,m}的一個子集。因此,共有2^m個不同子序列,從而窮舉搜索法需要指數時間。

    標簽: 序列 LCS 元素

    上傳時間: 2015-06-09

    上傳用戶:氣溫達上千萬的

  • 利用vb與數據庫進行連接

    利用vb與數據庫進行連接,實現對學生的成績等信息進行管理。

    標簽: 數據庫 連接

    上傳時間: 2013-12-20

    上傳用戶:xaijhqx

  • P2P源碼

    P2P源碼,現在先火的技術,不能使用中文名,真煩,我的源碼全是中文名的,而且傳完了要改回來,希望改進,要上傳本站沒有的源碼是不可能的,都十幾萬的源碼怎么能找到沒有的?我只將收藏的貢獻出來就是了。

    標簽: P2P 源碼

    上傳時間: 2015-06-12

    上傳用戶:愛死愛死

主站蜘蛛池模板: 龙里县| 玛沁县| 青龙| 茂名市| 鲁甸县| 文山县| 台东县| 乐昌市| 错那县| 仪征市| 吉林市| 浙江省| 鱼台县| 山阴县| 玉门市| 澄迈县| 分宜县| 西宁市| 巴楚县| 青浦区| 大姚县| 梨树县| 磴口县| 凤山县| 安新县| 新乐市| 什邡市| 莒南县| 洮南市| 泾川县| 南城县| 大厂| 翁牛特旗| 临夏县| 涪陵区| 福鼎市| 榕江县| 泌阳县| 香格里拉县| 嘉鱼县| 宕昌县|