会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Dreamlife23333
博客园
首页
新随笔
联系
订阅
管理
2019年3月21日
练习8——队列
摘要: 1、队列的抽象类,虚函数,纯虚函数。class Queue{public: Queue(){}; ~Queue(){}; virtual int EnQueue(int x)=0; virtual int DeQueue(int &x)=0; ...
阅读全文
posted @ 2019-03-21 17:24 UnderScrutiny
阅读(154)
评论(0)
推荐(0)
2019年3月20日
Ubuntu使用+ThinkPHP学习——23(微信开发者工具的安装)
摘要: 其几天老师让我去负责微信方面的接入工作,这不是为难我王某人吗!!!没办法,现在需要硬着头皮装微信开发者工具。直接用的github上的一个教程。链接:https://github.com/cytle/wechat_web_devtools因为我的电脑之前为了装微信和qq...
阅读全文
posted @ 2019-03-20 09:36 UnderScrutiny
阅读(194)
评论(0)
推荐(0)
2019年3月18日
Ubuntu使用——23(dock的美化)
摘要: 今天下载了一个Cairo-Dock(应用商店就可以下载),简直棒极了。鼠标移动开它就会隐藏,鼠标放到下面一秒它就会出现。感觉棒极了。接下来就是将系统的任务栏给关掉。具体的操作为:gsettings set org.gnome.shell.extensions.dash...
阅读全文
posted @ 2019-03-18 23:48 UnderScrutiny
阅读(1930)
评论(0)
推荐(0)
2019年3月17日
Ubuntu使用——22(zip文件解压后文件名乱码问题的解决)
摘要: 转载https://www.cnblogs.com/nyist-xsk/p/7742151.html在windows上压缩的文件,是以系统默认编码中文来压缩文件。由于zip文件中没有声明其编码,所以linux上的unzip一般以默认编码解压,中文文件名会出现乱码。 虽...
阅读全文
posted @ 2019-03-17 20:25 UnderScrutiny
阅读(825)
评论(0)
推荐(0)
练习六——链式栈+括号匹配
摘要: #include #include #include using namespace std;struct StackNode{public: char data; struct StackNode *link; StackNode(char d='...
阅读全文
posted @ 2019-03-17 10:58 UnderScrutiny
阅读(278)
评论(0)
推荐(0)
练习五——链式栈+数值转换
摘要: #include #include using namespace std;struct StackNode{public: int data; struct StackNode *link; StackNode(int d=0,StackNode ...
阅读全文
posted @ 2019-03-17 09:44 UnderScrutiny
阅读(193)
评论(0)
推荐(0)
2019年3月16日
练习四——顺序栈
摘要: #include #include using namespace std;class SeqStack{private: int *elements; int top; int maxSize; void overflowProcess();...
阅读全文
posted @ 2019-03-16 22:39 UnderScrutiny
阅读(129)
评论(0)
推荐(0)
练习三——单链表
摘要: #include using namespace std;class List;class LinkNode{ friend List;private: LinkNode *link; int data;public: LinkNode(Lin...
阅读全文
posted @ 2019-03-16 21:41 UnderScrutiny
阅读(166)
评论(0)
推荐(0)
Ubuntu使用+ThinkPHP学习——21(老师给的项目部署到Ubuntu上所遇到的问题汇总)
摘要: 13号上午,老师发来了他的项目,因为老师的开发环境是wamp,而我的是lamp,除了系统不一样,其他的都一样。下午我开始了部署,问题来了。问题一:老师发的项目中public目录下没有index.php文件(原因是老师忘记发了)。解决办法:下载一个干净的框架,将老师的文...
阅读全文
posted @ 2019-03-16 11:06 UnderScrutiny
阅读(526)
评论(0)
推荐(0)
2019年3月15日
练习2——顺序表
摘要: //实现顺序表基本功能,然两个顺序表相并#include #include using namespace std;typedef int T;class SeqList{ T *data; int MaxSize; int last;public:...
阅读全文
posted @ 2019-03-15 09:49 UnderScrutiny
阅读(169)
评论(0)
推荐(0)
下一页
公告