- 博客(28)
- 收藏
- 关注
原创 FT Introduction
1.establishes the state necessary for data connectivity before the reassociation rather than after the re-association .2. method: A. FT-Over-air: interact with the target ap directly. B. FT-Ove
2015-11-22 17:47:25 458
原创 linux slab原理学习
1. 结构高速缓存组------高速缓存-----slab-----object | |------object |-----slab-----object2.linux structurestruc
2015-05-13 23:35:34 349
原创 算法问题[待解决]
1.编写一个在1,2,…,9(顺序不能变)数字之间插入+或-或什么都不插入,使得计算结果总是100的程序,并输出所有的可能性。例如:1 + 2 + 34 – 5 + 67 – 8 + 9 = 100。
2015-05-11 19:30:45 299
原创 求单向链表倒数第K个数
1.相对论的角度2.p1从头开始遍历K个数; p2从头开始; p1遍历到尾部; p2所在的位置即为倒数第K个数 -----------L--------------p1 ----K----->-----L-K----p2 ----L-K----->------K---
2015-01-24 10:07:03 317
原创 堆排序
1.堆:类似二叉树数组对象2.种类: 最大堆->A[PARENT(i)] >= A[i]最小堆->A[PARENT(i)] 3.建堆:Heap_max_Build 保持堆性质:Heap_max_Ify 堆排序:Heap_max_Sort4.Code#include #include #define PAR
2015-01-20 23:42:29 480
原创 stack link
CODE #include #include #include #include typedef struct tagStackNode{ int iValue; struct tagStackNode *pstNext;}STACK_NODE_S;static STACK_NODE_S *pstStack;#define STACK_T
2014-12-10 00:20:32 337
原创 bst link
code #include #include #include #include typedef struct tagBSTNode{ int iValue; struct tagBSTNode *pstLeft; struct tagBSTNode *pstRight;}BST_NODE_S;static BST_NODE_S *pstRoot;
2014-12-09 22:48:02 280
原创 Redhat Linux设置gdb相关参数
1.commandulimit2.manual ulimit [-SHacdefilmnpqrstuvx [limit]] Provides control over the resources available to the shell and to processes started by it, on systems tha
2014-12-06 13:36:01 341
原创 Fibonacci
#include #include #include #include time_t Fibonacci_GetTime(){ time_t stTime = 0; stTime = time(0); printf("%ld\r\n", stTime); return stTime;}unsigned int *puiCnt = NULL; int Fibonacc
2014-12-06 13:28:19 360
原创 Reverse-1
#include #include #include typedef struct tagLinkList{ struct tagLinkList *next; int num;}LINK_LIST_S; LINK_LIST_S *LinkList_CreateNode(int num){ LINK_LIST_S *pstLinkList = NULL; pstLink
2014-12-05 01:04:52 1461
原创 统计1的个数
题目:1+11+.... + n个连续的1,统计和中包含1的个数思路:1.计算个位数的和,对10取余,若为1,则nr_1++ 对10求商,记录进位数2.对十位的数+进位数,对10取余,若为1,则nr_1++
2014-12-02 22:40:33 365
原创 shrink
1.try_to_free_pages balance_pgdat->shrink_zone->shrink_lruvec->shrink_list->shrink_inactive_list
2014-12-02 20:07:23 304
原创 C内核-hlist
1.数据结构链表头struct hlist_head{ hlist_node *first;}链表节点struct hlist_node{ struct hlist_node *next; struct hilist_node **pprev;}单头指针的双链表,减少内存空间。但是损失了直接访问链表尾部的能力。
2014-12-01 23:33:19 344
原创 C语言算法之快速排序
void quick_sort(int arry[], int lefPosition, int rigPosition){ int baseNum; int first = lefPosition; int last= rigPosition; int basePosition = lefPosition; printf("m %d %d\r
2014-11-16 17:17:52 391
原创 C排序算法之选择排序法
void select_sort(int arry[], int n){ int minPosition; int i; int j; int minNum; for(i = 0; i { for(j = i; j { if(arry[j]
2014-11-15 16:20:14 365
原创 排序法之插入排序
void insert_sort(int arry[], int n){ int curPosition; int inserPosition; int searPosition; int insertNum; for(curPosition = 1; curPosition { insertNum = arry[
2014-11-15 15:56:29 287
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人