12 2014 档案

摘要:#include #include struct node{ int data; struct node *next;};struct node* create_list(int a[],int len){ struct node *phead; struct node *ptr; struct n... 阅读全文
posted @ 2014-12-25 19:58 生死相依 阅读(798) 评论(0) 推荐(0)
摘要:URL:http://jpkc.onlinesjtu.com/CourseShare/Courses/ResourceModule/PreReading.aspx?courseid=701018&nodid=238&chapterid=238&preid=16单链表的插入操作1)已知线性链表head... 阅读全文
posted @ 2014-12-25 16:31 生死相依 阅读(8034) 评论(0) 推荐(1)
摘要:前些日子作一些数据项目的时候 在ADO.NET中处理 ExecuteNonQuery()方法时,总是通过判断其返回值是否大于0来判断操作时候成功 。但是实际上并不是这样的,好在处理的数据操作多时 修改, 插入, 删除,否则的话问题就有点打了,都是些基础的知识,但是很重要个人觉得有必要记下来。 Exe... 阅读全文
posted @ 2014-12-15 13:55 生死相依 阅读(9449) 评论(0) 推荐(0)
摘要:转自:http://www.cnblogs.com/gaochundong/p/3813252.html#!commentsData StructureAddFindDelete GetByIndexArray (T[])O(n)O(n)O(n)O(1)Linked list (LinkedList... 阅读全文
posted @ 2014-12-13 11:11 生死相依 阅读(1618) 评论(0) 推荐(0)
摘要:转自:http://blog.sina.com.cn/s/blog_4bdb170b01019atv.html图像处理-线性滤波-1 基础(相关算子、卷积算子、边缘效应)这里讨论利用输入图像中像素的小邻域来产生输出图像的方法,在信号处理中这种方法称为滤波(filtering)。其中,最常用的是线性滤... 阅读全文
posted @ 2014-12-07 15:56 生死相依 阅读(30409) 评论(0) 推荐(1)