- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 希尔排序&选择排序&时间复杂度分析
#include #include void shellsort(char array[],int len);void selectsort(char array[],int len);void swap(char *a,char *b){ *a ^= *b; *b ^= *a; *a ^= *b;}//好多傻逼面试都考这种写法,岂不知这种写法在a,b是一个数时有bug:假设
2013-10-04 00:44:52 20216 5
原创 cut+join+sort命令
1.cut命令-c 以字符为单位-f 以字段为单位-d 字段分割符1-7表示:c第一个到第七个字符f第一个到第七个字段例子:原文件:输出:2.join命令-1 2第一个文件第二个字段-2 3第二个文件第三个字段输出:匹配字段相同的+第一个文件剩余字段+第二个文件剩余字段例子:原文件:输出
2013-10-03 02:39:10 643
原创 锐捷+arris笔试题(2013)
#include #include #include #define ENDIANNESS(c) do{union{char str[4];int test;}endian_test={'l','?','?','b'};\ c=(char)endian_test.test;\}while(0);void getstr(char **p){ *p=(char *)malloc(1
2013-09-30 20:05:39 887
转载 sed命令解析
sed删除换行方法:sed ':a;N;/s/\n//g;ta'/////////////////////////////////////////////////////////////////////////////////////////////////////1、sed执行模板=sed '模式{命令1;命令2}'即逐行读入模式空间,执行命令,最后输出打印出来
2013-09-20 00:54:52 1261
原创 链表
//#include #include #include #define PRINT printf("%c,",p->data); //宏定义对字符串中的字符不替换 不能写为#define PRINTTYPE %c 然后使用printf("PRINTTYPE,",p->data);typedef char TYPE;typedef struct Lnode{ TYPE data
2013-09-18 00:37:52 423
翻译 Dynamic Memory Allocation in Critical Embedded Systems/关于嵌入式系统中的动态内存分配
Today I’m going to talk about why dynamic memory allocation is rarely used in critical embedded systems, and whether using only static allocation is a necessary restriction. I’m going to assume that m
2013-09-16 18:22:35 831
原创 排序算法
#include #include #include ////////////////////////////////////////////////////////////////////////////////////////冒泡void exchange(char *a,char *b){ char temp; temp=*a; *a=*b; *b=temp;}void
2013-09-16 02:05:48 501
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人