摘要: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; // ...
阅读全文
摘要:cmd进入Python安装路径scripts文件夹 >pip install requests 报错: Collecting requests Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
阅读全文
摘要:1. Pycharm编写的代码出现满屏的波浪线,如何去除》》》点击右下角的小人图标将箭头移到中间syntax处即可。 2. 运行时报错: UserWarning: No parser was explicitly specified, so I'm using the best available
阅读全文
摘要:记录安装出现的问题,以供下次参考。 参考文章:https://www.cnblogs.com/Dragon5/p/6498422.html 安装好python 下载BeautifulSoup压缩包 下载地址:https://www.crummy.com/software/BeautifulSoup/
阅读全文