191111专题

191111_小小小白安装Ubuntu18.04(单系统U盘安装)

经历: 踩了坑,按照安装指示,默认删除盘中的所有内容,然后安装ubuntu,(联网)但是最后会出现执行update grub 失败,致命错误(没有分区,自动安装) 支持UEFI启动的电脑 1.http://rufus.ie/  下载rufus 2.后来用Rufus制作盘,https://ywnz.com/linuxjc/3978.html  是错的,不能按照这个来 应该:

资源191111

https://github.com/leiguorui/programming-video-tutorials

191111题

#include<iostream>using namespace std;struct TreeNode {int value;TreeNode*left;TreeNode*right;TreeNode(int x = 0) :value(x), right(NULL), left(NULL) {}};class Solution {public:void Serialize(T