编译uboot时出现:board/freescale/mx6ull_alientek_emmc/Kconfig:15: ‘endif‘ in different file than ‘if‘ 参考正点原子手册进行yizhi移植的时候,编译uboot时出现上述错误,原因是board/freescale/mx6ull_alientek_emmc/Kconfig路径下 endif后没有加空行,加空行后编译成功。
二叉树的遍历(扩展先序序列建立二叉树,递归与非递归先序遍历和层次遍历) 话不多说上代码:测试数据AB^CD^^^E^^这是建立的树#include <stdio.h>#include <iostream>#include <stack>#include <queue>#include <malloc.h>using namespace std;#define MAXSIZE 100typedef struct Node{ char date; struct No...