虫虫首页|资源下载|资源专辑|精品软件
登录|注册

MOD-xslt

  • 数据结构实验

    #include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struct node *next;   }Node,*Linklist;      Linklist Createlist()   {       Linklist p;       Linklist h;       int data1;       scanf("%d",&data1);       if(data1 != 0)       {           h = (Node *)malloc(sizeof(Node));           h->data = data1;           h->next = NULL;       }       else if(data1 == 0)       return NULL;       scanf("%d",&data1);       while(data1 != 0)       {           p = (Node *)malloc(sizeof(Node));           p -> data = data1;           p -> next = h;           h = p;           scanf("%d",&data1);       }       return h;   }      void Outputlist(Node *head)   {       Linklist p;       p = head;       while(p != NULL )       {           printf("%d ",p->data);           p = p->next;       }       printf("\n");   }      void Freelist(Node *head)   {       Node *p;       Node *q = NULL;       p = head;       while(p != NULL)       {           q = p;           p = p->next;           free(q);       }   }      int main()   {       Node *head;       head = Createlist();          Outputlist(head);          Freelist(head);          return 0;   }   2.顺序栈 [cpp] view plain copy #include <iostream>   #include <stdio.h>   #include <stdlib.h> ///顺序栈   #define MaxSize 100      using namespace std;      typedef

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..

  • Propagation Channel Characterization

    The investigation of the propagation channel is becoming more and more important in mod- ern wireless communication. The demand for spectral efficiency motivates exploitation of all channels that can possibly be used for communications. Nowadays, a common trend for designing physical layer algorithms is to adapt the transceiving strategy, either by maximizing the diversity gains or by utilizing the coherence of the channels to improve the signal-to-noise power ratio.

    标签: Characterization Propagation Channel

    上传时间: 2020-05-31

    上传用户:shancjb

  • concept的IGBT驱动板原理解读

    MOD(模式选择)MOD 输入,可以选择工作模式直接模式如果MOD 输入没有连接(悬空) ,或连接到VCC,选择直接模式,死区时间由控制器设定。该模式下,两个通道之间没有相互依赖关系。输入INA 直接影响通道1,输入INB直接影响通道2。在输入( INA 或INB )的高电位, 总是导致相应IGBT 的导通。每个IGBT接收各自的驱动信号。半桥模式如果MOD 输入是低电位(连接到GND),就选择了半桥模式。死区时间由驱动器内部设定, 该模式下死区时间Td 为3us。输入INA 和INB 具有以下功能: 当INB 作为使能输入时, INA 是驱动信号输入。当输入INB 是低电位,两个通道都闭锁。如果INB 电位变高,两个通道都使能,而且跟随输入INA 的信号。在INA 由低变高时,通道2 立即关断, 1 个死区时间后,通道1 导通。只

    标签: concept igbt 驱动

    上传时间: 2022-06-21

    上传用户:hxd

  • 电子工程师常用的手机APP软件(四款APP软件)

    电子工程师常用的手机APP软件,部分功能是:LED发光二极管限流电阻值、三极管偏置电压计算、三极管开关饱和度计算、运算放大器低通滤波器、运放高通滤波器计算、带通滤波器设计计算、R-C滤波器截止频率计算‘电容串联计算、并联电阻计算、惠斯登电桥计算、恒流源计算、变压器设计  、电感设计、电容设计、环路控制 、导线计算  、电阻计算、散热器计算等等。下载前如需了解请访问:http://bbs.21ic.com/forum.php?mod=viewthread&tid=2634010&page=1&extra=#pid9957716

    标签: 电子工程师

    上传时间: 2022-07-27

    上传用户:zhengtiantong