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

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

開(kāi)發(fā)基礎(chǔ)

  • 經典C語言程序設計100例1-10 如【程序1】 題目:有1、2、3、4個數字

    經典C語言程序設計100例1-10 如【程序1】 題目:有1、2、3、4個數字,能組成多少個互不相同且無重復數字的三位數?都是多少? 1.程序分析:可填在百位、十位、個位的數字都是1、2、3、4。組成所有的排列后再去        掉不滿足條件的排列。 2.程序源代碼: main() { int i,j,k printf("\n") for(i=1 i<5 i++)   ?。?以下為三重循環*/   for(j=1 j<5 j++)     for (k=1 k<5 k++)     {      if (i!=k&&i!=j&&j!=k)    /*確保i、j、k三位互不相同*/      printf("%d,%d,%d\n",i,j,k)     } }

    標簽: 100 10 C語言 程序設計

    上傳時間: 2013-12-14

    上傳用戶:hfmm633

  • K51 浮點數除法

    K51 浮點數除法,用匯編編寫,基礎的東西

    標簽: K51 除法

    上傳時間: 2013-12-16

    上傳用戶:xauthu

  • 動態規劃的方程大家都知道

    動態規劃的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人會懷疑這道題的后效性而放棄動規做法。 本來我還想做Dijkstra,后來變了沒二十行pascal就告訴我數組越界了……(dist:array[1..1000*1001 div 2]...) 無奈之余看了xj_kidb1的題解,剛開始還覺得有問題,后來豁然開朗…… 反復動規。上山容易下山難,我們可以從上往下走,最后輸出f[n][1]。 xj_kidb1的一個技巧很重要,每次令f[i][0]=f[i][i],f[i][i+1]=f[i][1](xj_kidb1的題解還寫錯了)

    標簽: 動態規劃 方程

    上傳時間: 2014-07-16

    上傳用戶:libinxny

  • 自組織映射網路(SOM)

    自組織映射網路(SOM) ,一種以競爭架構為學習基礎的類神經網路模式 SOM網路是模仿腦神經細胞『物以類聚』的特性

    標簽: SOM 映射

    上傳時間: 2017-01-07

    上傳用戶:x4587

  • 幫助系統工程師

    幫助系統工程師,設計者,管理者在電視廣播上可以順利的傳輸類比訊號至數位訊號之基礎技術

    標簽: 系統 工程

    上傳時間: 2014-01-07

    上傳用戶:lht618

  • This manual describes SAMSUNG s S3C2410A 16/32-bit RISC microprocessor. This product is designed to

    This manual describes SAMSUNG s S3C2410A 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance micro-controller solution in small die size. To reduce total system cost, the S3C2410A includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.

    標簽: This microprocessor describes S3C2410A

    上傳時間: 2013-11-30

    上傳用戶:GavinNeko

  • 介紹回歸問題中高斯過程的應用

    介紹回歸問題中高斯過程的應用,C. E. Rasmussen & C. K. I. Williams, Gaussian Processes for Machine Learning,

    標簽: 回歸 高斯 過程

    上傳時間: 2017-07-25

    上傳用戶:skfreeman

  • This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to

    This manual describes SAMSUNG s S3C2410X 16/32-bit RISC microprocessor. This product is designed to provide hand-held devices and general applications with cost-effective, low-power, and high-performance microcontroller solution in small die size. To reduce total system cost, the S3C2410X includes the following components separate 16KB Instruction and 16KB Data Cache, MMU to handle virtual memory management, LCD Controller (STN & TFT), NAND Flash Boot Loader, System Manager (chip select logic and SDRAM Controller), 3-ch UART, 4-ch DMA, 4-ch Timers with PWM, I/O Ports, RTC, 8-ch 10-bit ADC and Touch Screen Interface, IIC-BUS Interface, IIS-BUS Interface, USB Host, USB Device, SD Host & Multi-Media Card Interface, 2-ch SPI and PLL for clock generation.

    標簽: This microprocessor describes S3C2410X

    上傳時間: 2014-01-11

    上傳用戶:shizhanincc

  • h264_and_mpeg4_video_compressed 英文書 原文電子檔

    h264_and_mpeg4_video_compressed 英文書 原文電子檔 為h264_and_mpeg4之基礎教科書

    標簽: h264基礎

    上傳時間: 2015-05-01

    上傳用戶:yuepub

  • 離散實驗 一個包的傳遞 用warshall

     實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); } 

    標簽: warshall 離散 實驗

    上傳時間: 2016-06-27

    上傳用戶:梁雪文以

主站蜘蛛池模板: 广汉市| 滦南县| 桦南县| 浦县| 东阿县| 凤台县| 湘阴县| 兴国县| 黑河市| 江源县| 新建县| 固始县| 汽车| 安陆市| 高尔夫| 砀山县| 枣强县| 梁山县| 岳池县| 清丰县| 斗六市| 扎鲁特旗| 建宁县| 汤阴县| 乌鲁木齐县| 连州市| 平果县| 寿阳县| 峨山| 青州市| 马关县| 中江县| 旬邑县| 原阳县| 鹿泉市| 池州市| 措美县| 麦盖提县| 开远市| 平凉市| 和平区|