自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 AVL树

算法

2016-12-28 23:27:52 177

原创 CCF真题----消除类游戏

CCF第六次CSP认证考试题解#include<stdio.h> struct point{ int flag=1; int num; }; #define MAX 31 struct point box[MAX][MAX]; int n,m; //void search(int i,int j,int *cnt); int main(void) { scanf("%d%d"

2016-04-09 21:53:19 351

原创 迪杰斯特拉算法C++实现

迪杰斯特拉算法是经典的定点求最短路的算法,其原理是用贪心算法维护一颗最短路径树。算法复杂度是 n^2,通过剪枝可以适当优化。

2016-01-25 02:11:14 426

原创 mac下mysql的卸载与重装

首先执行下面几个语句 - * sudo rm -rf /Library/StartupItems/MySQLCOM - * sudo rm -rf /Library/Receipts/mysql * - * rm -rf ~/Library/PreferencePanes/My* - * sudo rm -rf /Library/PreferencePanes/My* - * su

2016-01-22 20:39:19 273

原创 javascript中数组的迭代器方法

是因为一次无意中看了一篇关于javascript闭包的文章,我突然迷上了javascript,被她的美丽多变的语法和特性给折服,哈哈,闲话不说,就让我们一起来学习吧。 的第一个方法是 forEach(),该方法接受一个函数作为参数,对数组中的每个元素 使用该函数。下面这个例子展示了如何使用该方法:function square(num){ print(num, num * num);

2015-12-17 20:12:51 249

ISO IEC 9899 1999 (C99)

Foreword 1 ISO (the International Organization for Standardization) and IEC (the International Electrotechnical Commission) form the specialized system for worldwide standardization. National bodies that are member of ISO or IEC participate in the development of International Standards through technical committees established by the respective org anization to deal with particular fields of technical activity. ISO and IEC technical committees collaborate in fields of mutual interest. Other international organizations, governmental and non-governmental, in liaison with ISO and IEC, also take part in the work. 2 International Standards are drafted in accordance with the rules given in the ISO/IEC Directives, Part 3. 3 In the field of information technology, ISO and IEC have established a joint technical committee, ISO/IEC JTC 1. Draft International Standards adopted by the joint technical committee are circulated to national bodies for voting. Publication as an International Standard requires approval by at least 75% of the national bodies casting a vote. 4 International Standard ISO/IEC 9899 was prepared by Joint Technical Committee ISO/IEC JTC 1, Information technology, Subcommittee SC 22, Programming languages, their environments and system software interfaces. The Working Group responsible for this standard (WG 14) maintains a site on the World Wide Web at http://www.dkuug.dk/JTC1/SC22/WG14/ containing additional information relevant to this standard such as a Rationale for many of the decisions made during its preparation and a log of Defect Reports and Responses. 5 This second edition cancels and replaces the first edition, ISO/IEC 9899:1990, as amended and corrected by ISO/IEC 9899/COR1:1994, ISO/IEC 9899/AMD1:1995, and ISO/IEC 9899/COR2:1996. Major changes from the previous edition include: — restricted character set support via digraphs and <iso646.h> (originally specified in AMD1) — wide character library support in <wchar.h> and <wctype.h> (originally specified in AMD1) — more precise aliasing rules via effective type — restricted pointers — variable-length arrays

2015-06-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除