摘要: Dump of assembler code for function phase_5: 0x0000000000401062 <+0>: push %rbx 0x0000000000401063 <+1>: sub $0x20,%rsp 0x0000000000401067 <+5>: mov % 阅读全文
posted @ 2023-03-09 12:14 Logic_Han 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 虚拟机内的c++找不到头文件 Finally Solution:没装g++编译器 Ubuntu Linux MySQL刚安装找不到密码用户名 Ubunto20.04安装MySQL并修改root用户密码(Linux安装mysql root用户无法登陆) LINUX:拷贝文件src/指定目录下,文件夹图 阅读全文
posted @ 2023-03-09 08:35 Logic_Han 阅读(226) 评论(0) 推荐(0) 编辑
摘要: LeetCode:Search Algorithm 1\First unique char Algorithm Design 利用字符数量的有限性,通过数组来映射(避免Hash_map的高复杂度) 注意数组声明为int A[26]而不是char A[26]; if(s=="") return ' ' 阅读全文
posted @ 2023-03-08 21:01 Logic_Han 阅读(12) 评论(0) 推荐(0) 编辑
摘要: vector.begin()/rbegin()和find_if( , , ) vector.begin()/rbegin()和find_if( , , ) #include <iostream> #include <algorithm> #include "vector" using namespace std; int main() { std::vector<int> v 阅读全文
posted @ 2023-03-06 21:13 Logic_Han 阅读(25) 评论(0) 推荐(0) 编辑