VMware + Ubuntu16.04 网络无法使用问题

摘要: 本机使用Wifi网络。 1. VMware 设置: Edit -> Virtual Network Editor-> Vmnet0 : Bridged, Auto-bridging. 2. 在关闭虚拟机的情况下设置。 Virtual Machine Settings -> Network Adapt 阅读全文
posted @ 2016-05-07 20:53 Liz- 阅读(4512) 评论(1) 推荐(0) 编辑

Git 常用命令

摘要: 可以先add,然后git remote -v查看一下,验证添加成功了之后再删除原来的。 git 在windows下用url直接获取仓库,并设置用户名密码存储(不用每次pull push都在输入密码) git clone http://gitlab.com/yourproject 会提示输入账号密码下 阅读全文
posted @ 2015-08-16 20:21 Liz- 阅读(150) 评论(0) 推荐(0) 编辑

队列——顺序队列

摘要: 原文地址:http://blog.csdn.net/ggxxkkll/article/details/8661569原作者的讲解很详细,看过受益很大。 1 #include "stdafx.h" 2 #include "stdlib.h" 3 #include 4 using namespace... 阅读全文
posted @ 2015-04-29 20:58 Liz- 阅读(226) 评论(0) 推荐(0) 编辑

String类简单实现

摘要: 原文地址:http://rsljdkt.iteye.com/blog/774188 1 #include "stdafx.h" 2 #include "stdlib.h" 3 #include 4 using namespace std; 5 6 class String ... 阅读全文
posted @ 2015-04-29 20:53 Liz- 阅读(167) 评论(0) 推荐(0) 编辑

二叉树遍历

摘要: 原文地址:http://blog.csdn.net/zhaoxianyong/article/details/7165386 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 struct BiTreeNode 5 { 6 int ... 阅读全文
posted @ 2015-04-29 20:36 Liz- 阅读(194) 评论(0) 推荐(0) 编辑

队列——链式队列

摘要: 原文地址:http://blog.csdn.net/hguisu/article/details/7674195 1 #include "stdafx.h" 2 #include "stdlib.h" 3 #include 4 #include 5 using namespace st... 阅读全文
posted @ 2015-04-28 20:51 Liz- 阅读(240) 评论(0) 推荐(0) 编辑

摘要: 原文地址:http://blog.csdn.net/hguisu/article/details/7674195 1 ///栈的顺序存储,c++类实现 2 #include "stdafx.h" 3 #include "stdlib.h" 4 #include 5 using namespace ... 阅读全文
posted @ 2015-04-28 20:48 Liz- 阅读(154) 评论(0) 推荐(0) 编辑

单链表

摘要: 参考文章:http://blog.csdn.net/hguisu/article/details/7673703 1 #include "stdafx.h" 2 #include "stdlib.h" 3 #include 4 5 #define TRUE 1 6 #define F... 阅读全文
posted @ 2015-04-28 20:42 Liz- 阅读(136) 评论(0) 推荐(0) 编辑

《大话数据结构》读书笔记——8.4.1折半查找

摘要: //c实现 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 5 int _tmain(int argc, _TCHAR* argv[]) 6 { 7 int a[10] = {0,1,3,4,6,7,9,11,12,15}; 8 ... 阅读全文
posted @ 2015-04-22 21:11 Liz- 阅读(183) 评论(0) 推荐(0) 编辑

《大话数据结构》读书笔记——9.9快速排序

摘要: 1 #include "stdafx.h" 2 #include "stdlib.h" 3 4 int Partition(int *arr,int _low,int _high); 5 void QSort(int *arr,int low,int high); 6 void QuickSor... 阅读全文
posted @ 2015-04-22 21:06 Liz- 阅读(253) 评论(0) 推荐(0) 编辑