
结构与算法
Geek_LFP
本人熟悉嵌入式软件、无线技术、C语言、Linux、ARM、STM32、ZigBee、WiFi,从事芯片软件验证工作。
展开
-
堆栈
本文转载自:http://blog.youkuaiyun.com/dlutbrucezhang/article/details/8747828堆栈 我们已经对堆栈这种数据结构有了初步认识。堆栈是一组元素的集合,类似于数组,不同之处在于,数组可以按下标随机访问,这次访问a[5]下次可以访问a[1],但是堆栈的访问规则被限制为Push和Pop两种操作,Push(入栈或压栈)向栈顶添加元素,Pop(出栈或弹出)则取出转载 2017-07-08 10:48:58 · 419 阅读 · 0 评论 -
C语言实现双向链表
文章转载自:http://blog.youkuaiyun.com/dlutbrucezhang/article/details/8824646[cpp] view plain copy print? #include <assert.h> #include <stdlib.h> #include <stdio.h> typedef struct myList转载 2017-07-08 11:21:08 · 324 阅读 · 0 评论