
项目
_Dawn__
博客搬到GitHub上去了,以后应该不会在csdn上更新了.
展开
-
基于优先队列的作业调度算法实现
实训作业 #include <bits/stdc++.h> #include <windows.h> using namespace std; typedef long long LL; mt19937_64 gen(time(0)); struct node { //定义作业的属性,放在结构体里 int start; //开始时间 int end; //结束时间 int num; //作业编号 int原创 2022-04-08 22:12:34 · 730 阅读 · 0 评论 -
数独游戏
闲来无事,用dfs写个数独计算器 #include <algorithm> #include <bitset> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <deque> #include <functional> #include <iostream> #include <m原创 2021-05-13 21:56:26 · 263 阅读 · 2 评论