摘要: 1)线性表 //顺序存储下线性表的操作实现 #include <stdio.h> #include <stdlib.h> typedef int ElemType; /*线性表的顺序存储(静态) struct List { ElemType list[MaxSize]; int size; }; * 阅读全文
posted @ 2016-12-25 16:51 dong1 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 上一篇随笔整理了一下逐行扫描型Memory LCD的显存管理与emWin移植,这篇就整理一下分页型Memory LCD显存管理与emWin移植。 //此处以SSD1306作为实例 //OLED的显存//存放格式如下.//[0]0 1 2 3 ... 127 //[1]0 1 2 3 ... 127 阅读全文
posted @ 2016-12-25 13:00 dong1 阅读(1059) 评论(0) 推荐(0) 编辑