码迷,mamicode.com
首页 >  
搜索关键字:using stacks    ( 53729个结果
浮点数二分
浮点数二分 模板 假如求平方根 #include<bits/stdc++.h> //万能头文件 using namespace std; int main() { double x; cin>>x; double l = 0, r = max(1, x); while (r - l > 1e-8) ...
分类:其他好文   时间:2021-05-24 04:47:23    阅读次数:0
【AT4133】[ARC097D] Monochrome Cat(换根DP)
给定一棵$n$个点的树,每个点有一个颜色(黑或白)。你可以任选一个点出发,能执行两种操作:走到一个相邻点并翻转其颜色;翻转当前点颜色。求使得所有节点颜色为黑的最少操作次数。 ...
分类:其他好文   时间:2021-05-24 04:12:00    阅读次数:0
POJ1149 - PIGS - 网络流最大流 - 构图
##AC代码 #include<stdio.h> #include<string.h> #include<iostream> #include<queue> using namespace std; #define inf 0x3f3f3f3f const int N=1020; int e[N][ ...
分类:其他好文   时间:2021-05-24 03:46:14    阅读次数:0
学习Qt Charts - 不使用UI的情况下使用QTCharts
新建一个Qt Widgets Application项目,不添加UI文件,如下图: 建立工程后,在**.pro**文件中添加: QT += charts 然后在**.h**文件中添加: #include "QChart" using namespace QtCharts; 在**.cpp**中,先添 ...
分类:其他好文   时间:2021-05-24 02:40:25    阅读次数:0
Tarjan
有向图强连通分量SCC P3387【模板】缩点 注释放代码里啦 时间复杂度O(n+m) #include<iostream> #include<cstdio> #include<cstdlib> #define maxn 100010 #define maxm 1000010 using names ...
分类:其他好文   时间:2021-05-24 02:15:52    阅读次数:0
DBHelperMySQL
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Configuration;using System.Data.Common;using ...
分类:数据库   时间:2021-05-24 02:07:55    阅读次数:0
Dapper.Net简例
Dapper的多表查询实现打开链接 using (var conn = new SqlConnection(myConnectionString)) { conn.Open(); .... } 单表查询 public class Account { public int? Id {get;set;} ...
分类:移动开发   时间:2021-05-24 02:03:08    阅读次数:0
C# 递归压缩图片
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
分类:Windows程序   时间:2021-05-24 01:47:14    阅读次数:0
简单瞎搞题
链接:https://ac.nowcoder.com/acm/problem/17193 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int N = 1000100; 4 bitset<N>s,p; 5 int main() { ...
分类:其他好文   时间:2021-05-24 01:32:55    阅读次数:0
c#日志生成
using System; using System.Collections.Generic; using System.IO; using System.Text; /// <summary> /// 打印error类 /// </summary> public class LogUtil { p ...
分类:Windows程序   时间:2021-05-24 00:05:56    阅读次数:0
53729条   上一页 1 ... 13 14 15 16 17 ... 5373 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!