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

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

實習(xí)指導(dǎo)書

  • 自己用fuzzy實作開發之倒車入庫系統

    自己用fuzzy實作開發之倒車入庫系統,程式不大,適合於剛進入fuzzy控制的新手練習

    標簽: fuzzy 系統

    上傳時間: 2015-12-23

    上傳用戶:蠢蠢66

  • 這是一個用keil C在8051上開發實作的UART程式

    這是一個用keil C在8051上開發實作的UART程式,本人認為很適合剛接觸8051的學習者,很有幫助的。

    標簽: keil 8051 UART 程式

    上傳時間: 2015-12-23

    上傳用戶:comua

  • 學會對文件的記錄鎖定

    學會對文件的記錄鎖定,及解鎖。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) printf("Inpute your ID :") scanf("%d", &myrec.ID) printf("Input your age :") scanf("%d", &myrec.age) lseek(fd, 0,SEEK_END) lockf(fd, 1, 0) write(fd, (void *)&myrec, sizeof(myrec)) lockf(fd, 0 ,0) return 0 } 執行命令cc lock.c –o lock.out Chmod +x lock.out ./lock.out

    標簽: 記錄

    上傳時間: 2016-01-04

    上傳用戶:亞亞娟娟123

  • 問題描述 序列Z=<B

    問題描述 序列Z=<B,C,D,B>是序列X=<A,B,C,B,D,A,B>的子序列,相應的遞增下標序列為<2,3,5,7>。 一般地,給定一個序列X=<x1,x2,…,xm>,則另一個序列Z=<z1,z2,…,zk>是X的子序列,是指存在一個嚴格遞增的下標序列〈i1,i2,…,ik〉使得對于所有j=1,2,…,k使Z中第j個元素zj與X中第ij個元素相同。 給定2個序列X和Y,當另一序列Z既是X的子序列又是Y的子序列時,稱Z是序列X和Y的公共子序列。 你的任務是:給定2個序列X、Y,求X和Y的最長公共子序列Z。

    標簽: lt 序列

    上傳時間: 2014-01-25

    上傳用戶:netwolf

  • 管理員手冊,adsl培訓.docAgent技術文檔.docATM Sniffer網絡規程分析儀.docATM與千兆以太網.docCC08 ISDN 2B+D 知識.DOCIrix系統管理.docISP

    管理員手冊,adsl培訓.docAgent技術文檔.docATM Sniffer網絡規程分析儀.docATM與千兆以太網.docCC08 ISDN 2B+D 知識.DOCIrix系統管理.docISP 管 理 員 維 護 指 南.docNetshow 系統管理員手冊.doc...等等技術文章

    標簽: docATM docAgent Sniffer DOCIrix

    上傳時間: 2016-01-25

    上傳用戶:徐孺

  • 本書在高階技術(尤涉作業系統核心)方面居崇高位,不少名書也常推薦此書以補不足。本書基本以作業系統觀念為主

    本書在高階技術(尤涉作業系統核心)方面居崇高位,不少名書也常推薦此書以補不足。本書基本以作業系統觀念為主,輔以範例驗證之。讀者群設定在具備32位元Windows程式經驗者。"Richter在實作技巧是位高手。諸君,試安裝本書所附光碟片你就知道了,我只能用華麗兩字來形容。"引自臺灣候杰先生語。

    標簽: 系統 核心 方面

    上傳時間: 2014-12-03

    上傳用戶:agent

  • gpio驅動 leddrv.c為驅動源程序 writeled.c為應用程序 writeled.c 編譯方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o wri

    gpio驅動 leddrv.c為驅動源程序 writeled.c為應用程序 writeled.c 編譯方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c leddrv.c 編譯方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目錄/linux-2.4.x/include-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -D__linux__ -DNO_MM -mapcs-32 -march=armv4 -mtune=arm7tdmi -mshort-load-bytes -msoft-float -DMODULE -c -o leddrv.o leddrv.c

    標簽: writeled arm-elf-gcc leddrv gpio

    上傳時間: 2013-12-13

    上傳用戶:kytqcool

  • 分治法解決最近對問題 畫一條垂直線x=c

    分治法解決最近對問題 畫一條垂直線x=c,把這些給定點分為兩個包含n/2個點的子集S1和S2,使得n/2個點位于直線的左側或直線上,另外n/2個點位于直線的右側或直線上;遵循分治法的思想,遞歸地求出左子集S1和右子集S2中的最近對,分別為d1與d2;之后d=min{d1,d2}。合并過程:在以垂線x=c為對稱軸,2d為寬度的區域內求最近兩個點的距離,記為d3;求D=min{d,d3};

    標簽: 分治法 垂直

    上傳時間: 2013-12-26

    上傳用戶:源碼3

  • The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the d

    The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video.

    標簽: bottleneck developed the concept

    上傳時間: 2014-12-03

    上傳用戶:ikemada

  • The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the d

    The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video. Hardware reference

    標簽: bottleneck developed the concept

    上傳時間: 2016-03-18

    上傳用戶:極客

主站蜘蛛池模板: 藁城市| 大宁县| 牟定县| 郧西县| 长宁区| 葵青区| 江油市| 成武县| 新宁县| 商河县| 固镇县| 平罗县| 寿阳县| 晴隆县| 临安市| 崇左市| 曲靖市| 湾仔区| 昌黎县| 宜章县| 苏尼特右旗| 孟州市| 万盛区| 雷山县| 普定县| 正宁县| 中西区| 信阳市| 永川市| 乐东| 泰宁县| 太仆寺旗| 永康市| 汝城县| 西乌珠穆沁旗| 通山县| 广州市| 竹山县| 宜都市| 安康市| 古蔺县|