漂亮的閃爍星星flash動畫源碼,適合空間,個人網站及博客
上傳時間: 2017-04-28
上傳用戶:yy541071797
單片機與光電傳感器測量轉速程序 首先,你的原理圖我沒有,我就按我開發板的原理圖來寫。原理圖在我的博客上:http://hi.baidu.com/mcu 5Fspaces/album/item/8b0e987e63e7ed360cd7daf7.html 數碼管是4位的,把紅外傳感器當霍爾轉速傳感器。如果這些器件和單片機連接和你 的不一樣,自己改一下定義就行。
上傳時間: 2017-05-21
上傳用戶:zhengzg
Joomla!是一套獲得過多個獎項的內容管理系統(Content Management System, CMS)。Joomla!采用PHP+MySQL數據庫開發,可運行在Linux、Windows、MacOSX、Solaris等各種平臺上。Joomla!除了具有新聞/文章管理,文檔/圖片管理,網站布局設置,模板/主題管理等一些基本功能之外。還可通過其提供的上千個插件進行功能擴展包括:電子商務與購物車引擎,論壇與聊天軟件,**歷,博客軟件,目錄分類管理,廣告管理系統,電子報,數據收集與報表工具,期刊訂閱服務等。
標簽: Joomla Management Content System
上傳時間: 2013-12-25
上傳用戶:小鵬
QQ2440V3開發板的LED控制,一般的ARM9開發板都沒LCD驅動的。文件中有加載的步驟。具體可訪問我的博客http://blog.csdn.net/cy757
上傳時間: 2017-06-12
上傳用戶:asdfasdfd
包括電子政務系統的架構設計、工作流引擎的設計與開發、工作流圖形定義工具的設計與開發等,并詳細介紹了系統的C#源代碼。更多內容更新請參考作者的技術博客:http://blog.sina.com.cn/xianhuameng
上傳時間: 2014-11-29
上傳用戶:ruan2570406
這是個需求文檔,關于博客系統的,非常實用且詳細,所以看他有助于對需求分析更深入的理解
標簽: 文檔
上傳時間: 2013-12-24
上傳用戶:youth25
兼容各種圖像,CMS是Content Management System的縮寫,意為“內容管理系統”。 CMS具有許多基于模板的優秀設計,可以加快網站開發的速度和減少開發的成本。 CMS的功能并不只限于文本處理,它也可以處理圖片、Flash動畫、聲像流、圖像甚至電子郵件檔案。 CMS其實是一個很廣泛的稱呼,從一般的博客程序,新聞發布程序,到綜合性的網站管理程序都可以被稱為內容管理系統。
標簽: Management Content System CMS
上傳時間: 2014-01-04
上傳用戶:dbs012280
在本教程中,我將利用 NetBeans IDE 對 Ruby 的支持創建一個簡單的 Web 應用程序。本文將演示如何創建一個 Ruby 博客程序。您將遵循這些基本流程創建模型、添加控制器并生成視窗。
標簽: 教程
上傳時間: 2017-07-15
上傳用戶:123456wh
開發環境:VS2005、C#、.net2.0、Access、AJAX引擎是自己寫的,沒有用到AJAX的DLL 留言可以選擇頭像,插入圖片和表情等功能 具有臟話過濾、皮膚更換等功能 功能除了留言本的基本功能,還有我博客前面提到的AJAX的后退標簽,與AJAX無刷新換膚功能,源碼內 嵌在aspx頁面中
上傳時間: 2017-09-28
上傳用戶:lijianyu172
兩個鏈表的交集 #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