01 2022 档案
摘要:尝试使用telnet登录SMTP服务器后输入命令。 首先进行如qq邮箱进行设置,获得授权码。 1.进入邮箱,点击设置,再点击账户 2.开启IMAP/SMTP服务,发送短信才能开启,然后获得授权码(图片上我已经开启了) 3.授权码的格式是16个小写字母,我的是mhdq kdmh ltzy cadc,注
阅读全文
摘要:1 #include <iostream> 2 #include <vector> 3 #include <queue> 4 using namespace std; 5 struct Treenode 6 { 7 int val; 8 Treenode* left; 9 Treenode* rig
阅读全文
摘要:1 //leetcode 146.LRU缓存 2 #include <iostream> 3 #include <unordered_map> 4 using namespace std; 5 struct DlinkedNode{ 6 int key,value; 7 DlinkedNode* p
阅读全文
摘要:1 #include <iostream> 2 using namespace std; 3 struct Listnode//定义链表节点 4 { 5 int val; 6 Listnode* next; 7 Listnode(int _val):val(_val),next(nullptr){}
阅读全文
摘要:1 #include <iostream> 2 #include <vector> 3 #include <queue> 4 using namespace std; 5 6 void Print(const vector<int> &v) 7 { 8 for(auto it:v) 9 { 10 c
阅读全文