04 2023 档案
摘要:理解原理->代码实现->复杂度分析 CLRS学习指南 - 简书 (jianshu.com) OI Wiki - OI Wiki (oi-wiki.org) Data Structure Visualization (usfca.edu) Algorithm Visualizer (algorithm
阅读全文
摘要:准备:支付宝南京地铁电子卡、身份证、学生证 5月2日 南区食堂门口集合 8:00 骑共享单车前往国权路地铁站 地铁线路(预计22分钟): 10号线:国权路->海伦路 乘坐4站 9分钟 4号线外圈: 海伦路->上海火车站 乘坐2站 6分钟 上海火车站(139.5元) 检票口:候车室9号 G7006 0
阅读全文
摘要:module top_module( input a, b, cin, output cout, sum ); assign sum = a ^ b ^ cin; assign cout = (a & b) | (cin & (a ^ b)); endmodule
阅读全文
摘要:/** * @file string_BM.cpp * @author Invisiphatom (ethancao16770@gmail.com) * @brief BM algorithm * @version 0.1 * @date 2023-04-12 * * @copyright Copy
阅读全文
摘要:#include <benchmark/benchmark.h> #include <algorithm> #include <deque> #include <iostream> #include <random> #include <vector> using namespace std; st
阅读全文
摘要:#include <benchmark/benchmark.h> #include <iostream> #include <random> #include <vector> using namespace std; static const int n = 200; static const i
阅读全文
摘要:#include <benchmark/benchmark.h> #include <algorithm> #include <deque> #include <functional> #include <iostream> #include <random> #include <string> #
阅读全文