摘要: https://github.com/mevdschee/2048.c 13818887035 阅读全文
posted @ 2020-10-24 19:33 FreyLuo 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1.嵌套for循环,循环次数多的放在里面,次数少的放在外面,可以提高执行效率。原因见下。 阅读全文
posted @ 2019-09-27 21:16 FreyLuo 阅读(126) 评论(0) 推荐(0) 编辑
摘要: ** ARM处理器的寄存器,ARM与Thumb状态,7中运行模式:http://blog.chinaunix.net/uid-28458801-id-3494646.html 阅读全文
posted @ 2019-08-02 10:16 FreyLuo 阅读(180) 评论(0) 推荐(0) 编辑
摘要: IP:https://www.cnblogs.com/baichuanhuihai/p/7773695.html 阅读全文
posted @ 2019-07-29 16:19 FreyLuo 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 芯片间的各类通信接口协议概述与对比:https://wenku.baidu.com/view/117e5213f18583d04964594e.html 阅读全文
posted @ 2019-07-21 23:58 FreyLuo 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 链表逆序: https://blog.csdn.net/ljyljyok/article/details/77996029 阅读全文
posted @ 2019-07-11 21:09 FreyLuo 阅读(167) 评论(0) 推荐(0) 编辑
摘要: //经典冒泡排序void sort_bubble(int* a,int len){ int i, j; int temp; for (i = 0; i < len - 1; i++) { for (j = 0; j < len - 1 - i; j++) { if (a[j] > a[j + 1]) 阅读全文
posted @ 2019-07-11 17:08 FreyLuo 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 笔试题:https://wenku.baidu.com/view/9e9ed29968dc5022aaea998fcc22bcd126ff42dc.html?rec_flag=default&sxts=1562743904979 C语言基础: https://wenku.baidu.com/view 阅读全文
posted @ 2019-07-10 20:31 FreyLuo 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 总线:https://wenku.baidu.com/view/e321a5a34793daef5ef7ba0d4a7302768e996f8a.html 阅读全文
posted @ 2019-07-10 17:00 FreyLuo 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1.转义字符 2.main函数的参数:int main(int argc,char *argv[]); 3.函数类型缺省时,默认int 4.a++ ++a 只要语句结束后(;),两者值都会加一,差别在该语句执行过程中“;”前的区别,c=a++ 与c=++a不一样,前者先赋值,再自增,后者先自增,再赋 阅读全文
posted @ 2019-07-10 14:30 FreyLuo 阅读(241) 评论(0) 推荐(0) 编辑