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

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

萬(wàn)用表的

  • 鏈表的實現初始化

    鏈表的實現初始化,完整代碼,用C++編寫。

    標簽: 初始化

    上傳時間: 2014-08-27

    上傳用戶:lx9076

  • 數字萬用表

    數字萬用表,可以測量0~5v的電壓值,精度達到+/-0.02v。

    標簽: 數字萬用表

    上傳時間: 2017-05-15

    上傳用戶:liglechongchong

  • 一些數字電壓表的一些資料

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

    標簽: 數字電壓表

    上傳時間: 2013-12-26

    上傳用戶:ynzfm

  • 數據結構中最經常用到的

    數據結構中最經常用到的,包括鏈表、雙鏈表、二叉樹、平衡二叉樹、哈希表等

    標簽: 數據結構

    上傳時間: 2014-01-23

    上傳用戶:wendy15

  • 模糊控制規則表的生成程序

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

    標簽: 模糊控制 程序

    上傳時間: 2017-07-11

    上傳用戶:yangbo69

  • 兩個鏈表的交集

    兩個鏈表的交集 #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;   /*   因為標記1的地方你用了頭結點,所以第一個數據域無效,應該從下一個頭元結點開始   */   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;/*我這里沒有用頭指針和頭結點,這里是首元結點head1里面就是第一個數據,一定要理解什么事頭指針, 頭結點,和首元結點 具體你一定要看這個博客: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;//我可以認為你這里用了頭結點,也就是說第一個數據域無效     **標記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);//這里的函數相當于head=NULL;  // initpointer(headt);//上面已經寫了headt=NULL那么這里可以不用調用這個函數   head=creatlist(head);   headt=creatlist(headt);   t=Intersect(head,headt);   printlist(t); }

    標簽: c語言編程

    上傳時間: 2015-04-27

    上傳用戶:coco2017co

  • JPL行星精密歷表的使用

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

    標簽: JPL 精密

    上傳時間: 2016-05-19

    上傳用戶:eeworm

  • DM3068 數字萬用表

    DM3068 數字萬用表 如您在使用此產品或本手冊的過程中有任何問題或需求,可與 RIGOL 聯系: 電子郵箱: service@rigol.com 網址: www.rigol.com

    標簽: 3068 DM 數字萬用表

    上傳時間: 2017-02-04

    上傳用戶:aarons大叔

  • 優利德萬用表圖紙

    里面收集了28款優利德萬用表圖紙,對于萬用表維修有很大幫助,是電子維修愛好者的最愛。

    標簽: 萬用表圖紙

    上傳時間: 2020-07-17

    上傳用戶:

  • 單片機做萬用表

    該文檔為單片機做萬用表總結文檔,是一份很不錯的參考資料,具有較高參考價值,感興趣的可以下載看看……………… 

    標簽: 單片機

    上傳時間: 2022-03-22

    上傳用戶:

主站蜘蛛池模板: 云南省| 樟树市| 象州县| 靖江市| 天全县| 靖远县| 青海省| 九江市| 普宁市| 怀来县| 桂阳县| 金昌市| 凤山县| 墨脱县| 廉江市| 永州市| 八宿县| 新密市| 彰化市| 沐川县| 拜泉县| 防城港市| 通山县| 图们市| 石嘴山市| 乐清市| 东方市| 工布江达县| 凯里市| 鹤岗市| 北碚区| 威宁| 乳源| 通山县| 泗水县| 通化县| 张掖市| 剑阁县| 德兴市| 巴里| 濮阳市|