Arvin_JIN

04 2018 档案

单链表基本操作
摘要:1 //单链表基本操作 2 #include 3 using namespace std; 4 5 //#define ElemType int 6 typedef int ElemType; 7 8 typedef struct LNode { 9 ElemType data; 10 struct LNode *next; // ... 阅读全文

posted @ 2018-04-30 21:50 Arvin_JIN 阅读(244) 评论(0) 推荐(0) 编辑

顺序表基本操作
摘要:记录简单的顺序表操作 阅读全文

posted @ 2018-04-30 21:48 Arvin_JIN 阅读(198) 评论(0) 推荐(0) 编辑

Python 安装第三方库
摘要:cmd进入Python安装路径scripts文件夹 >pip install requests 报错: Collecting requests Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) 阅读全文

posted @ 2018-04-22 00:20 Arvin_JIN 阅读(5870) 评论(1) 推荐(1) 编辑

pycharm遇到的小问题
摘要:1. Pycharm编写的代码出现满屏的波浪线,如何去除》》》点击右下角的小人图标将箭头移到中间syntax处即可。 2. 运行时报错: UserWarning: No parser was explicitly specified, so I'm using the best available 阅读全文

posted @ 2018-04-15 22:29 Arvin_JIN 阅读(427) 评论(0) 推荐(0) 编辑

Windows下安装BeautifulSoup4
摘要:记录安装出现的问题,以供下次参考。 参考文章:https://www.cnblogs.com/Dragon5/p/6498422.html 安装好python 下载BeautifulSoup压缩包 下载地址:https://www.crummy.com/software/BeautifulSoup/ 阅读全文

posted @ 2018-04-15 17:48 Arvin_JIN 阅读(2452) 评论(0) 推荐(0) 编辑

导航