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

ARTicle

  • Complete steps and project for developing a server project and procedure to deploy and execute the p

    Complete steps and project for developing a server project and procedure to deploy and execute the project. This ARTicle/tutorial with code will make you to develop your own web projects. For more details and more tutorials and more projects for EJB, BMP, CMP,

    标签: project and developing procedure

    上传时间: 2014-01-13

    上传用户:leehom61

  • Analysis and Simulation of UHF RFID System Jin Li, Cheng Tao Modern Telecommunication Institute, Be

    Analysis and Simulation of UHF RFID System Jin Li, Cheng Tao Modern Telecommunication Institute, Beijing Jiaotong University, Beijing 100044, P. R. China Abstract This ARTicle presents the analysis and simulation of UHF RFID system

    标签: Telecommunication Simulation Institute Analysis

    上传时间: 2013-12-21

    上传用户:从此走出阴霾

  • sql图书管理系统

    帮一个朋友做的毕业设计,根据DOORKEY发布的图书管理系统 (BDE+PARADOX)(HTTP://WWW.2CCC.COM/ARTicle.ASP?ARTicleID=770)修改而成。

    标签: sql server javaee

    上传时间: 2015-05-29

    上传用户:xueshuangchen

  • 有向图,无向图的深度,广度遍历

     有向图的邻接表存储,递归和非递归的深度、广度遍历

    标签: 有向图,无向图的深度,广度遍历

    上传时间: 2015-12-10

    上传用户:qctxh

  • 计算声学响度

    Computation of loudness (Zwicker model) according to ISO 532B / DIN 45631 norms.  This model is valid for steady sounds. Code based on BASIC program published in the following ARTicle: Program for calculating loudness according to DIN 45 631 (ISO 532B)", E.Zwicker and H.Fastl, J.A.S.J (E) 12, 1 (1991).

    标签: 计算 声学

    上传时间: 2016-11-14

    上传用户:zztony16

  • Fire and fury

    Fire and Fury。 This ARTicle is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump about the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • Fire and fury

    This ARTicle is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump abot the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • DHT11温湿度检测

    由STC89C51单片机来控制DHT11传感器采集的温湿度的转换、1602液晶屏的显示,以及蜂鸣器的报警。

    标签: DHT 11 温湿度检测

    上传时间: 2018-04-27

    上传用户:luson

  • 数据结构实验

    #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..

  • RC5编码格式的遥控器解码、PCA9633器件控制代码示例、串口通信程序示例、IIC通信示例

    RC5编码格式的遥控器解码、PCA9633器件控制代码示例、串口通信程序示例、IIC通信示例

    标签: 9633 RC5 PCA IIC 编码 器件 代码 串口通信 控制 程序

    上传时间: 2019-07-03

    上传用户:zqy1818