上一页 1 ··· 4 5 6 7 8
摘要: 转载自: https://blog.csdn.net/thisway_diy/article/details/79207234 我的配置: vmware workstation pro 16,ubutun 18.04.1 一、为什么要让虚拟机中的Ubuntu上网?想在线安装软件,下载git源码包,或 阅读全文
posted @ 2021-06-18 11:29 SanFranciscoo 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 转载、参考自: https://blog.csdn.net/S3132411278/article/details/117533063 https://blog.csdn.net/MMEHMY/article/details/107728549 1.下载vmware workstation16安装包 阅读全文
posted @ 2021-06-17 21:18 SanFranciscoo 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 转自: https://blog.csdn.net/weixin_42592326/article/details/105930042 右击“我的电脑”,选择“管理”,选择“服务和应用程序”,选择“服务”,停掉这些服务 二、把注册表的vm目录给删了 windows+R,输入regedit 依次点开这 阅读全文
posted @ 2021-06-17 20:32 SanFranciscoo 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 递归初步见: https://www.cnblogs.com/San-Francisco/p/14882647.html 题目: https://leetcode-cn.com/problems/swap-nodes-in-pairs/ 两两交换链表中的结点,分别用了1.递归 2.迭代 两个方法解决 阅读全文
posted @ 2021-06-15 15:19 SanFranciscoo 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 题目链接如下: https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/ 本题使用了如下两个方法: 哑结点:若给定的链表中没有空的头节点,设置一个哑结点在第一个结点前面,最后在删除掉。 如: 题目中给定 head 作为链表的 阅读全文
posted @ 2021-06-15 13:49 SanFranciscoo 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 空指针引用问题,最近经常遇到这个bug,找出了出现此bug的一个原因: 不能引用没有被赋值的指针。 例如: int *q=p->next; 要改为: if(p){ int *q=p->next; } 要使用指针p,必须保证p不为空指针。 更具体地,再举一个例子: #include <iostream 阅读全文
posted @ 2021-06-15 13:19 SanFranciscoo 阅读(660) 评论(0) 推荐(0) 编辑
摘要: 递归初步学习参考了以下博客: https://lyl0724.github.io/2020/01/25/1/ 本题: https://leetcode-cn.com/problems/merge-two-sorted-lists/ 方法一:哑结点,暴力 设一个哑结点为合并后链表的暂时头节点,待两个链 阅读全文
posted @ 2021-06-15 12:36 SanFranciscoo 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 做题目录: https://github.com/CyC2018/CS-Notes/blob/master/notes/Leetcode%20%E9%A2%98%E8%A7%A3%20-%20%E7%9B%AE%E5%BD%95.md 160相交链表 本题的题意是找到两个链表中的相交结点(即从此结点 阅读全文
posted @ 2021-06-13 16:02 SanFranciscoo 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 物联网智能楼宇自动照明系统,用Arduino系列的WifiDuino作为主控开发板,配合Blinker提供的“点灯·blinker”APP,实现在该APP上控制LED亮暗、状态显示、温湿度显示、用小米小爱进行语音控制灯开关、亮暗程度等功能。 点灯科技的官网 https://www.diandeng. 阅读全文
posted @ 2021-06-12 00:02 SanFranciscoo 阅读(1111) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8