摘要: #更新用户ID数组 def updateUserIDs(): global userIds userIds = [] for i in userList: userIds.append(i['id']) #添加用户 def addUser(): print('当前用户编号:') print(user 阅读全文
posted @ 2019-12-13 18:04 羽吢 阅读(677) 评论(0) 推荐(0) 编辑
摘要: 因为需要更改命令行的初始位置,但是在百度的过程中,发现很多通过更改快捷方式起始位置的方法只是更改了从开始菜单运行的cmd快捷方式的起始位置,但由于Win+R运行的cmd运行的不是快捷方式,而是最根本的cmd.exe,所以起始位置还是默认的,但对于像我这种熟悉了WIn+R的拿鼠标去点总感觉差了点什么, 阅读全文
posted @ 2019-11-15 09:48 羽吢 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 记录一下,为了以后方便,若有需要请自取 阅读全文
posted @ 2019-09-09 22:19 羽吢 阅读(6182) 评论(0) 推荐(1) 编辑
摘要: https://mp.csdn.net/postedit/88423157 阅读全文
posted @ 2019-07-26 19:20 羽吢 阅读(609) 评论(0) 推荐(0) 编辑
摘要: https://mp.csdn.net/postedit/87933181 阅读全文
posted @ 2019-07-26 19:18 羽吢 阅读(202) 评论(0) 推荐(0) 编辑
摘要: https://mp.csdn.net/postedit/87932930 阅读全文
posted @ 2019-07-26 19:16 羽吢 阅读(143) 评论(0) 推荐(0) 编辑
摘要: https://mp.csdn.net/postedit/83927089 阅读全文
posted @ 2019-07-26 19:15 羽吢 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #ifndef SEQUEUE_H #define SEQUEUE_H #include using namespace std; class SeQueue{ public: SeQueue(int size=defaultMaxsize){ if(size>0){ maxsize=size; data=new int... 阅读全文
posted @ 2019-07-26 19:10 羽吢 阅读(2100) 评论(0) 推荐(0) 编辑
摘要: #ifndef SEQSTACK_H #define SEQSTACK_H #include using namespace std; class SeqStack{ public: SeqStack(int size=defaultMaxsize){ if(size>0){ maxSize=size; data=new... 阅读全文
posted @ 2019-07-26 16:38 羽吢 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 单个节点头文件 链表头文件 调用代码 阅读全文
posted @ 2019-07-26 15:27 羽吢 阅读(973) 评论(0) 推荐(0) 编辑