Chinaunix首页 | 论坛 | 博客
  • 博客访问: 257449
  • 博文数量: 49
  • 博客积分: 110
  • 博客等级: 民兵
  • 技术积分: 510
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-13 00:59
个人简介

make it run,make it better,make it fast. https://github.com/liulanghaitun

文章分类

全部博文(49)

文章存档

2023年(1)

2022年(2)

2020年(4)

2019年(4)

2017年(15)

2016年(3)

2014年(3)

2013年(14)

发布时间:2013-04-25 00:35:39

#lsb_release -aLSB Version:    :core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarchDistributor ID: RedHatEnterpriseServerDescription:    Red Hat Enterprise Linux Server release 6.3 (Santiago)Release:  .........【阅读全文】

阅读(4121) | 评论(0) | 转发(1)

发布时间:2013-04-10 00:11:06

#include<stdio.h>#include<stdlib.h>/** * 数据交换 */static void swap(int* first,int* second){         int tmp = *first;         *first = *second;       .........【阅读全文】

阅读(1326) | 评论(0) | 转发(0)

发布时间:2013-04-07 23:45:11

递归单链表反转:#include<stdio.h>#include<stdlib.h>#define EXIT_SUCCESS 0#define EXIT_FAILED 1/** * 定义节点 */typedef struct Node{         int data;         struct Node* next;}pNode;.........【阅读全文】

阅读(2696) | 评论(6) | 转发(1)

发布时间:2013-03-21 01:09:14

Y组合子......【阅读全文】

阅读(1543) | 评论(0) | 转发(0)

发布时间:2013-02-20 00:03:31

函数式语言基于λ演算,是一门可编程的编程语言.  程序设计主要用于可运算性.可以表述为:操作数(万物)+操作码(法则)或者数据结构(空间)+算法(时间)  程序设计语言可以表述为三个方面:1.符号定义(原子操作数),表达式(E表示),符号(V表示)E:=V2.函数定义(原子操作数和原子操作码的组合)或者.........【阅读全文】

阅读(2153) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册