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

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

無(wú)(wú)軸承

  • 賦權(quán)有向圖中心問(wèn)題 問(wèn)題描述: 設(shè)G=(V,E)是一個(gè)賦權(quán)有向圖

    賦權(quán)有向圖中心問(wèn)題 問(wèn)題描述: 設(shè)G=(V,E)是一個(gè)賦權(quán)有向圖,v是G的一個(gè)頂點(diǎn), v的偏心距定義為: Max {w∈ V,從w到v的最短路徑長(zhǎng)度} G中偏心距最小的頂點(diǎn)稱為G的中心。試?yán)肍loyd 算法設(shè)計(jì)一個(gè)求賦權(quán)有向圖中心的算法。

    標(biāo)簽:

    上傳時(shí)間: 2017-08-17

    上傳用戶:klin3139

  • /* * tesswind.c * This program demonstrates the winding rule polygon * tessellation proper

    /* * tesswind.c * This program demonstrates the winding rule polygon * tessellation property. Four tessellated objects are drawn, * each with very different contours. When the w key is pressed, * the objects are drawn with a different winding rule. */

    標(biāo)簽: demonstrates tessellation tesswind program

    上傳時(shí)間: 2013-12-10

    上傳用戶:星仔

  • This file contains all possible questions that the exam 2 could contain (SSD2 consideration), as w

    This file contains all possible questions that the exam 2 could contain (SSD2 consideration), as well as exercises that may require the practical examination, I hope they help, luck!

    標(biāo)簽: consideration questions contains possible

    上傳時(shí)間: 2013-12-25

    上傳用戶:himbly

  • for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix

    for entropy H = entropy(S) this command will evaluate the entropy of S, S should be row matrix H = entropy([X Y Z]) this command will find the joint entropy for the 3 variables H = entropy([X,Y],[Z,W]) this will find H(X,Y/Z,W).. you can use it for any combination of joint entropies Please validate this function before using it

    標(biāo)簽: entropy evaluate command matrix

    上傳時(shí)間: 2017-09-10

    上傳用戶:caozhizhi

  • This is a comparison foundation construction of data example code, the function is quite complete, w

    This is a comparison foundation construction of data example code, the function is quite complete, was myself debugs the successful procedure, might again on Visual c++ the direct movement

    標(biāo)簽: construction comparison foundation complete

    上傳時(shí)間: 2013-12-30

    上傳用戶:cxl274287265

  • 包含一些大眾化的數(shù)學(xué)題目

    包含一些大眾化的數(shù)學(xué)題目,比如說(shuō)buffon丟針問(wèn)題、dijkstra的三色旗問(wèn)題、找零錢問(wèn)題、背包問(wèn)題、無(wú)限位數(shù)的整數(shù)運(yùn)算、最短路徑問(wèn)題...

    標(biāo)簽:

    上傳時(shí)間: 2014-01-05

    上傳用戶:athjac

  • 職業(yè)教育心理學(xué)

    1. 心理學(xué)家( )于1879年在德國(guó)的萊比錫大學(xué)建立了世界上第一個(gè)心理實(shí)驗(yàn)室,從而使心理學(xué)成 為了一門獨(dú)立的科學(xué)。 A 艾賓浩斯(Ebbinghaus)B 繆勒(G.E.Muller)C 費(fèi)希納(Fechner) D 馮特(W.Wundt) 2. 研究人的心理活動(dòng)的一般規(guī)律的科學(xué)是指( )。 A 工程心理學(xué) B 普通心理學(xué) C 工程心理學(xué) D 社會(huì)心理學(xué)

    標(biāo)簽: 職業(yè)教育心理學(xué)

    上傳時(shí)間: 2015-03-10

    上傳用戶:FUCSAD

  • 越南 山陽(yáng)港暨臺(tái)塑河靜鋼廠 安防系統(tǒng)規(guī)畫

    文件中規(guī)劃進(jìn)行多系統(tǒng)的整合應(yīng)用,包含了~~~ 微型雷達(dá)偵測(cè)系統(tǒng) 熱感紅外線攝影機(jī) 可見(jiàn)光紅外線攝影機(jī) 無(wú)線網(wǎng)路傳輸應(yīng)用 後端警報(bào)管理平臺(tái)

    標(biāo)簽: 安防系統(tǒng) 規(guī)畫建議

    上傳時(shí)間: 2015-03-18

    上傳用戶:戴斗笠的神秘人

  • 16進(jìn)制轉(zhuǎn)十進(jìn)制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定義鍵盤輸入需要的緩沖區(qū) DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a號(hào)功能,輸入一個(gè)字符串 mov ah,0ah               ;用回車結(jié)束 int 21h mov dl,0ah               ;再進(jìn)行換行,以便在下一行顯示轉(zhuǎn)換后的字符串  mov ah,2     int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符個(gè)數(shù),作為循環(huán)的次數(shù) mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小寫字母,則轉(zhuǎn)換為大寫字母 mov [w],ax mov dl,[bx]             ;取出一個(gè)字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循環(huán),處理完整個(gè)字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    標(biāo)簽: 匯編

    上傳時(shí)間: 2015-04-02

    上傳用戶:wcc0310

  • 剛果布大體積承臺(tái)溫控分析

    對(duì)大體積混凝土的溫度應(yīng)力進(jìn)行仿真分析,分析降溫措施的效果。

    標(biāo)簽: 大體積混凝土 midas 溫度應(yīng)力

    上傳時(shí)間: 2015-04-03

    上傳用戶:panjichuan

主站蜘蛛池模板: 阜康市| 昌吉市| 台中县| 大余县| 新营市| 佛坪县| 得荣县| 察雅县| 邳州市| 辽宁省| 安乡县| 祁阳县| 清新县| 绍兴市| 江永县| 内丘县| 玉山县| 新河县| 伊春市| 崇左市| 剑川县| 淄博市| 平塘县| 长岛县| 平泉县| 乌苏市| 专栏| 泽州县| 福建省| 饶阳县| 沈阳市| 乌兰浩特市| 青岛市| 天长市| 怀化市| 邹城市| 乌拉特后旗| 天长市| 衡阳市| 临桂县| 兴国县|