摘要: 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 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 其几天老师让我去负责微信方面的接入工作,这不是为难我王某人吗!!!没办法,现在需要硬着头皮装微信开发者工具。直接用的github上的一个教程。链接:https://github.com/cytle/wechat_web_devtools因为我的电脑之前为了装微信和qq... 阅读全文
posted @ 2019-03-20 09:36 UnderScrutiny 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 今天下载了一个Cairo-Dock(应用商店就可以下载),简直棒极了。鼠标移动开它就会隐藏,鼠标放到下面一秒它就会出现。感觉棒极了。接下来就是将系统的任务栏给关掉。具体的操作为:gsettings set org.gnome.shell.extensions.dash... 阅读全文
posted @ 2019-03-18 23:48 UnderScrutiny 阅读(1815) 评论(0) 推荐(0) 编辑
摘要: 转载https://www.cnblogs.com/nyist-xsk/p/7742151.html在windows上压缩的文件,是以系统默认编码中文来压缩文件。由于zip文件中没有声明其编码,所以linux上的unzip一般以默认编码解压,中文文件名会出现乱码。 虽... 阅读全文
posted @ 2019-03-17 20:25 UnderScrutiny 阅读(770) 评论(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 阅读(272) 评论(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 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;class SeqStack{private: int *elements; int top; int maxSize; void overflowProcess();... 阅读全文
posted @ 2019-03-16 22:39 UnderScrutiny 阅读(122) 评论(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 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 13号上午,老师发来了他的项目,因为老师的开发环境是wamp,而我的是lamp,除了系统不一样,其他的都一样。下午我开始了部署,问题来了。问题一:老师发的项目中public目录下没有index.php文件(原因是老师忘记发了)。解决办法:下载一个干净的框架,将老师的文... 阅读全文
posted @ 2019-03-16 11:06 UnderScrutiny 阅读(449) 评论(0) 推荐(0) 编辑
摘要: //实现顺序表基本功能,然两个顺序表相并#include #include using namespace std;typedef int T;class SeqList{ T *data; int MaxSize; int last;public:... 阅读全文
posted @ 2019-03-15 09:49 UnderScrutiny 阅读(165) 评论(0) 推荐(0) 编辑