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

cn-study

  • 不带字库LCD12864设计,在田老师的MINI51上测试

    不带字库LCD12864设计,在田老师的MINI51上测试,里面的子函数经典,作者为田开坤老师,http://www.ceet.hbnu.edu.cn/bbs/里面有详细资料

    标签: 12864 MINI LCD 51

    上传时间: 2013-11-26

    上传用户:erkuizhang

  • 程序设计导引及在线实践 本书的最大特点是和“北京大学程序在线评测系统"紧密结合

    程序设计导引及在线实践 本书的最大特点是和“北京大学程序在线评测系统"紧密结合,因而把实践性摆到了一个特殊的地位。“北京大学程序在线评测系统”(简称“POJ”)是一个免费的公益性网上程序设计题库,网址为http://acm.pku.edu.cn/JudgeOnline,它包含2000多道饶有趣味的程序设计题,题目大部分来自ACM国际大学生程序设计竞赛,很多题目就反映工作和生活中的实际问题

    标签: 程序设计 实践 大学 在线评测

    上传时间: 2013-12-13

    上传用户:Yukiseop

  • matlab 仿真实例 本书籍版权归作者所有!请购买纸质书籍支持作者 站内书籍均由网上搜集,为方便网友购买正版之前做参考

    matlab 仿真实例 本书籍版权归作者所有!请购买纸质书籍支持作者 站内书籍均由网上搜集,为方便网友购买正版之前做参考,若无意中侵犯到您的权利请发邮件至:wing2008@yahoo.cn,我们会及时处理。谢谢!

    标签: matlab 书籍 仿真实例

    上传时间: 2013-12-13

    上传用户:虫虫虫虫虫虫

  • to become acquainted with a concept « cursor» language of SQL, by the types of cursors, to

    to become acquainted with a concept « cursor» language of SQL, by the types of cursors, to study the process of creation and application of cursors. To consider the examples of the use of cursors at creation of SQL of queries.

    标签: acquainted language concept cursors

    上传时间: 2013-12-24

    上传用户:libenshu01

  • 网点后台

    网点后台,NetShop网店系统安装方法 注意: 安装包仅适用于您的站点没有安装过NetShop网店系统的情况下全新安装,如果您的站点曾经安装过NetShop网店系统,则不能使用本包进行安装、升级等操作,否则会清空现有产品使用的的数据库。 详细安装过程如下: 1.解压程序包内的所有文件,使用FTP工具将./upload目录中所有文件上传至服务器; 2.在浏览器中访问:http://您的网址/install/index.aspx; 3.请根据向导,填入必要的信息,开始安装; 特别注意的是,要根据安装向导的提示,正确设置各个目录的读写属性,并保证服务器相关的配置启用 4.安装完毕后为了保证数据安全,务必删除install目录; 如果您还有安装问题,请参考NetShop帮助文档或登录NetShop官网论坛:http://bbs.netshop.net.cn;

    标签: 网点 后台

    上传时间: 2014-11-08

    上传用户:cx111111

  • 两个链表的交集

    两个链表的交集 #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

  • DDA使用教程

    DDSCAT 7.3 is a freely available open-source Fortran-90 software package applying the “discrete dipole approximation” (DDA) to calculate scattering and absorption of electromagnetic waves by targets with arbitrary geometries and complex refractive index. The targets may be isolated entities (e.g., dust particles), but may also be 1-d or 2-d periodic arrays of “target unit cells”, which can be used to study absorption, scattering, and electric fields around arrays of nanostructures.

    标签: userguide

    上传时间: 2015-04-29

    上传用户:499689361

  • S7-200CN解密

    S7-200CN解密,拆机解密,经实践,已证实此方法可以破解迄今为止市面所售的所有西门子 S7-200PLC(进口,国产CN 型)的密码,型号包括(212、214、216、222、22CN、224、 224CN、224XP、224XP CN、226、226CN、226XM)轻松破解3 级和POU 密码。是迄今为 止最为先进且真正实用的解密方法,直接读取PLC 的EEPROM 芯片获取密码。

    标签: S7-200CN解密

    上传时间: 2015-05-06

    上传用户:yzm767

  • 农历FLASH源码

    在FLASH中,制作时钟、日历都不难。在网上搜索一下,也会有一大遍源码等着你去下载。但不知是我孤陋寡闻,还是咋地。在网上还没见过农历的代码,在民族文化如此繁荣的中国。竟然没有人来研究这个。实在是有点遗憾。花点时间,研究了一下。随后把源码附上。希望大家共同讨论。 演示地址:http://www.taoshaw.com/taoshaw/study/jilishizhong/Taoshaw_Time.swf

    标签: FLASH 农历 源码

    上传时间: 2016-06-02

    上传用户:逍遥派0468

  • SpringMVC设计

       springMVC有三个映射器,如果不定义映射Mapping,那么就会使默认: l   <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> 也就是说:上面这个定义和不定义都是一样的。 不定义: <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean> 直接使用:hello.do来访问。 <!-- 简单的url映射处理器 --> l   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">                    <property name="mappings">                             <props>          那么上面的这个映射配置:表示多个*.do文件可以访问多个Controller或者一个Controller。          前提是:都必须依赖:          <bean id="testController" name="/hello.do" class="cn.itcast.controller.TestController"></bean>          <!-- /WEB-INF/jsp/index.jsp -->          <bean class="org.springframework.web.servl                                      <prop key="/hello1.do">testController</prop>                                      <prop key="/a.do">testController</prop>                             </props>                    </property> </bean> et.view.InternalResourceViewResolver">                    <property name="prefix" value="/WEB-INF/jsp/"></property>                    <property name="suffix" value=".jsp"></property>          </bean>

    标签: SpringMVC

    上传时间: 2016-06-03

    上传用户:hthunder