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

ro-blog

  • this is very good application for face traccking.it contains more and good differnt features.if u ro

    this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.

    标签: good application traccking contains

    上传时间: 2014-07-25

    上传用户:caiiicc

  • this is very good application for face traccking.it contains more and good differnt features.if u ro

    this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.

    标签: good application traccking contains

    上传时间: 2014-01-10

    上传用户:zhengzg

  • this is very good application for face traccking.it contains more and good differnt features.if u ro

    this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.

    标签: good application traccking contains

    上传时间: 2017-06-19

    上传用户:tzl1975

  • this is very good application for face traccking.it contains more and good differnt features.if u ro

    this is very good application for face traccking.it contains more and good differnt features.if u rotate face right side it will show the direction for rignt side.if u rotate face left side it will show the direction for left side.

    标签: good application traccking contains

    上传时间: 2014-07-03

    上传用户:c12228

  • 台湾嵌入式牛哥Jserv的RTOS作品

    台湾嵌入式牛哥Jserv的RTOS作品,内部已实现PXA250的实例移植。希望对要了解RTOS工作原理的朋友有用,强烈推荐。http://blog.linux.org.tw/~jserv/archives/002082.html

    标签: Jserv RTOS 嵌入式

    上传时间: 2014-11-26

    上传用户:1583060504

  • 包括电子政务系统的架构设计、工作流引擎的设计与开发、工作流图形定义工具的设计与开发等

    包括电子政务系统的架构设计、工作流引擎的设计与开发、工作流图形定义工具的设计与开发等,并详细介绍了系统的C#源代码。更多内容更新请参考作者的技术博客:http://blog.sina.com.cn/xianhuameng

    标签: 电子政务系统 架构设计 工作流引擎 图形

    上传时间: 2014-11-29

    上传用户:ruan2570406

  • 一组我经常使用的自己开发的linux小工具

    一组我经常使用的自己开发的linux小工具,用于提高开发效率。 请参考 http://yxp111.blog.163.com/

    标签: linux

    上传时间: 2013-12-15

    上传用户:蠢蠢66

  • Smarty 入門 不過因為有針對舊有的內容做一些小調整

    Smarty 入門 不過因為有針對舊有的內容做一些小調整,所以這次把它放回到自己的 Blog 裡。 序言 剛開始接觸樣版引擎的 PHP 設計師,聽到 Smarty 時,都會覺得很難。其實筆者也不例外,碰都不敢碰一下。但是後來在剖析 XOOPS 的程式架構時,開始發現 Smarty 其實並不難。只要將 Smarty 基礎功練好,在一般應用上就已經相當足夠了。當然基礎能打好,後面的進階應用也就不用怕了。 這次的更新,主要加上了一些概念性的東西,當然也有一些進階的技巧。不過這些也許早已深入大家的程式之中,如果有更好的觀點,也歡迎大家能夠回饋。

    标签: Smarty

    上传时间: 2014-12-01

    上传用户:凤临西北

  • JSP 的博客程序含SQL数据库,及程序的配置说明 博客

    JSP 的博客程序含SQL数据库,及程序的配置说明 博客,译自英文Blog。它是互联网平台上的个人信息交流中心。通常博客就是用来发表文章,所有的文章都是按照年份和日期排列,有些类似斑竹的日记。看上去平淡无奇,毫无可炫耀之处,但它可以让每个人零成本、零维护地创建自己的网络媒体,每个人都可以随时把自己的思想火花和灵感更新到博客站点上。

    标签: JSP SQL 博客 程序

    上传时间: 2013-12-27

    上传用户:笨小孩

  • 两个链表的交集

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