JSP 的博客程序含SQL数据库,及程序的配置说明 博客,译自英文Blog。它是互联网平台上的个人信息交流中心。通常博客就是用来发表文章,所有的文章都是按照年份和日期排列,有些类似斑竹的日记。看上去平淡无奇,毫无可炫耀之处,但它可以让每个人零成本、零维护地创建自己的网络媒体,每个人都可以随时把自己的思想火花和灵感更新到博客站点上。
上传时间: 2013-12-27
上传用户:笨小孩
迷宫问题以一个m*n的长方阵表示迷宫,0和1分别表示迷宫中的通路和障碍.设计一个程序,对任意设定的迷宫,求出一条入口到出口的通路,或的出没有通路的结论. {基本要求}: (1)实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一个坐标的方向. (2)编写递归形式的算法,求迷宫中所有通路. (3)以方阵形式输出迷宫及其通路
标签: 迷宫
上传时间: 2014-01-03
上传用户:zhengzg
本文首先说明了本次课程设计的目的和软硬件环境,然后介绍了J-Sim的编译与配置;接下来,在第四章说明了无线传感器网络各结点的内部结构图,第五章和第六章是我们对J-Sim中无线网络包和传感器网络包所做的总体分析,在阅读第五章和第六章之前,需要先阅读第四章,理解各结点的内部结构图。最后,我们对一个简单的无线传感器网络进行了仿真
上传时间: 2017-09-24
上传用户:黄华强
Verilog, c and asm source codes of the Minimig system, a fpga implementation of the Amiga computer. Version minimig-j used on the Minimig fpga board.
标签: implementation the computer Verilog
上传时间: 2017-09-24
上传用户:xauthu
!"#%$&(')*,+.-/012435678 ;= ?A@CBD3FEG HH/IJ,
标签: 无线天线
上传时间: 2015-03-03
上传用户:wpty
sqpingmvc实现的权限管理模块,功能包括用户管理,角色管理,模块管理,前端采用j-ui框架实现,支持html5标准 用户管理,用户新增,编辑,删除 角色管理,新建、编辑,删除,赋予权限 模块管理,新增,编辑,删除
上传时间: 2015-03-17
上传用户:1807444866
boost的matlab代码, Matlab source codes for the Boosting of the J-DLDA learner(B-JDLDA)
标签: boostcode
上传时间: 2015-03-23
上传用户:52086
本程序使用数值分析的方法找出任意函数指定区间内的所有实根。算法是通过一系列Chebyshev多项式毕竟目标函数,然后使用一种高效的数值分析方法(J.P. Boyd [see Appl. Num. Math. 56 pp.1077-1091 (2006)])求解出逼近函数的根。
上传时间: 2015-04-02
上传用户:chen971103
基础j的sp编程思想和程序代码,内部按章按类排版
标签: jsp
上传时间: 2015-04-18
上传用户:litter
两个链表的交集 #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