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

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

萬(wàn)(wàn)用表的設(shè)(shè)計(jì)(jì)

  • 哈希表的建立、查找。設(shè)有若干個(gè)學(xué)生的考試成績(jī)

    哈希表的建立、查找。設(shè)有若干個(gè)學(xué)生的考試成績(jī),用學(xué)生的學(xué)號(hào)作為關(guān)鍵字,采用除留余數(shù)求哈希地址,將學(xué)生的信息存儲(chǔ)到該地址空間,并且采用線性探測(cè)法解決沖突問(wèn)題。

    標(biāo)簽:

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

    上傳用戶:windwolf2000

  • 鏈表的實(shí)現(xiàn)初始化

    鏈表的實(shí)現(xiàn)初始化,完整代碼,用C++編寫。

    標(biāo)簽: 初始化

    上傳時(shí)間: 2014-08-27

    上傳用戶:lx9076

  • 數(shù)字萬(wàn)用表

    數(shù)字萬(wàn)用表,可以測(cè)量0~5v的電壓值,精度達(dá)到+/-0.02v。

    標(biāo)簽: 數(shù)字萬(wàn)用表

    上傳時(shí)間: 2017-05-15

    上傳用戶:liglechongchong

  • 一些數(shù)字電壓表的一些資料

    一些數(shù)字電壓表的一些資料,用PPT就看打開看,里面有圖片

    標(biāo)簽: 數(shù)字電壓表

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

    上傳用戶:ynzfm

  • 數(shù)據(jù)結(jié)構(gòu)中最經(jīng)常用到的

    數(shù)據(jù)結(jié)構(gòu)中最經(jīng)常用到的,包括鏈表、雙鏈表、二叉樹、平衡二叉樹、哈希表等

    標(biāo)簽: 數(shù)據(jù)結(jié)構(gòu)

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

    上傳用戶:wendy15

  • 模糊控制規(guī)則表的生成程序

    模糊控制規(guī)則表的生成程序,用MATLAB的M文件編寫。

    標(biāo)簽: 模糊控制 程序

    上傳時(shí)間: 2017-07-11

    上傳用戶:yangbo69

  • 兩個(gè)鏈表的交集

    兩個(gè)鏈表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因?yàn)闃?biāo)記1的地方你用了頭結(jié)點(diǎn),所以第一個(gè)數(shù)據(jù)域無(wú)效,應(yīng)該從下一個(gè)頭元結(jié)點(diǎn)開始   */   if(head==NULL)     printf("NULL\n");   else   {     while(head!=NULL)     {       if(flag==1)       {       printf("%d",head->data);       flag=0;       }       else       {         printf(" %d",head->data);       }       head=head->next;     }     printf("\n");   }   return 0; } struct Node *creatlist(struct Node *head) {      int n;    struct  Node *p1=(struct Node *)malloc(sizeof(struct Node));   p1->next=NULL; while(scanf("%d",&n),n!=-1) {   struct Node *pnode=(struct Node *)malloc(sizeof(struct Node));   pnode->next=NULL;      pnode->data=n;   if(head==NULL)     head=pnode;   p1->next=pnode;   p1=pnode; } return head; } struct Node *Intersect(struct Node *head1, struct Node *head2) { struct Node *p1=head1,*p2=head2;/*我這里沒(méi)有用頭指針和頭結(jié)點(diǎn),這里是首元結(jié)點(diǎn)head1里面就是第一個(gè)數(shù)據(jù),一定要理解什么事頭指針, 頭結(jié)點(diǎn),和首元結(jié)點(diǎn) 具體你一定要看這個(gè)博客:http://blog.sina.com.cn/s/blog_71e7e6fb0101lipz.html*/ struct Node *head,*p,*q; head = (struct Node *)malloc(sizeof(struct Node)); head->next = NULL; p = head; while( (p1!=NULL)&&(p2!=NULL) ) { if (p1->data == p2->data) { q = (struct Node *)malloc(sizeof(struct Node)); q->data = p1->data; q->next = NULL; p->next = q;//我可以認(rèn)為你這里用了頭結(jié)點(diǎn),也就是說(shuō)第一個(gè)數(shù)據(jù)域無(wú)效     **標(biāo)記1** p = q; p1 = p1->next; p2 = p2->next; } else if (p1->data < p2->data) { p1 = p1->next; } else { p2 = p2->next; } } return head; } int main() {   struct Node *head=NULL,*headt=NULL,*t;   //initpointer(head);//這里的函數(shù)相當(dāng)于head=NULL;  // initpointer(headt);//上面已經(jīng)寫了headt=NULL那么這里可以不用調(diào)用這個(gè)函數(shù)   head=creatlist(head);   headt=creatlist(headt);   t=Intersect(head,headt);   printlist(t); }

    標(biāo)簽: c語(yǔ)言編程

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

    上傳用戶:coco2017co

  • JPL行星精密歷表的使用

    當(dāng)計(jì)算太陽(yáng)系某行星相對(duì)太陽(yáng)或者相對(duì)其他行星的位置和速度的時(shí)候,在精度不太高的情況下,可以用行星的平均根數(shù)解析的得出,但是如果需要計(jì)算其高精度的位置和速度的時(shí)候,通常采用NASA(美國(guó)航空航天局)的JPL(噴氣推進(jìn)實(shí)驗(yàn)室)給出的行星精密歷表(DE200,DE403,DE405)。

    標(biāo)簽: JPL 精密

    上傳時(shí)間: 2016-05-19

    上傳用戶:eeworm

  • DM3068 數(shù)字萬(wàn)用表

    DM3068 數(shù)字萬(wàn)用表 如您在使用此產(chǎn)品或本手冊(cè)的過(guò)程中有任何問(wèn)題或需求,可與 RIGOL 聯(lián)系: 電子郵箱: service@rigol.com 網(wǎng)址: www.rigol.com

    標(biāo)簽: 3068 DM 數(shù)字萬(wàn)用表

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

    上傳用戶:aarons大叔

  • 優(yōu)利德萬(wàn)用表圖紙

    里面收集了28款優(yōu)利德萬(wàn)用表圖紙,對(duì)于萬(wàn)用表維修有很大幫助,是電子維修愛好者的最愛。

    標(biāo)簽: 萬(wàn)用表圖紙

    上傳時(shí)間: 2020-07-17

    上傳用戶:

主站蜘蛛池模板: 永城市| 建湖县| 岗巴县| 错那县| 绍兴市| 治多县| 资溪县| 巫山县| 株洲市| 定边县| 常德市| 余江县| 伊通| 桐梓县| 莱阳市| 尼勒克县| 确山县| 阿图什市| 郯城县| 台江县| 东乡族自治县| 北安市| 无为县| 乌兰县| 津市市| 阿坝县| 舟曲县| 泾源县| 西吉县| 濉溪县| 娱乐| 临沧市| 林口县| 永胜县| 新竹市| 玉山县| 筠连县| 琼海市| 加查县| 宜川县| 久治县|