-
C#自制简易任务管理器
C#自制简易任务管理器.
C#编写的简易的任务管理器,可以倒计时关闭任务
- 2022-07-02 23:31:44下载
- 积分:1
-
TSP
说明: Traveling Salesman Problem
市场上有很多种商品,旅行商 Shrek 做短期买卖赚取差价。他从一个城市购买一件商品,到达下一个相邻的城市就卖掉。如果这一次买卖无利可图,那么他就不会这么走。凭着自己和同伴多年的经验,他已经对地图上 n 个城市之间的差价了如指掌。两城市间可能有多种商品可赚取差价,此时 Shrek 只好倒卖利润最大的一件商品。
现在请你帮 Shrek 规划一条路线,使他能赚最多的钱。
输入
第一行两个整数 n、m。表示有 n 个城市,编号 1 ~ n
接下来有 m 行,每行三个整数 a、b、price,表示从城市 a 到城市 b 可赚取差价 price。
输出
若干空格分隔的整数,连成一条赚钱最多的路线。若有多条,输出字典序最小的那条路线(编号小的城市靠前的路线优先输出)
输入样例
4 4
2 1 5
1 3 3
3 4 1
1 4 5
输出样例
2 1 4(Traveling Salesman Problem)
- 2020-12-05 13:59:23下载
- 积分:1
-
一本学习Delphi编程的好书.共五十讲,有实例便于学习.
一本学习Delphi编程的好书.共五十讲,有实例便于学习.-a study Delphi programming books. A total of 50 speakers, there are examples to facilitate learning.
- 2022-04-17 20:33:32下载
- 积分:1
-
serial-communication
利用C语言实现RS232串口上下位机通信的设计(Using C language to realize RS232 serial port communication up and down a machine design
)
- 2013-12-12 10:18:29下载
- 积分:1
-
颜色识别追踪
stm32f103 驱动ov7670及颜色识别追踪(STM32 driver ov7670 with color recognition tracking)
- 2020-06-19 04:00:01下载
- 积分:1
-
rsa
说明: 生成rsa秘钥对,生成私钥和公钥,用来加解密数据或数字签名(Generate rsa key pair, generate private key and public key, used to encrypt and decrypt data or digital signature)
- 2020-06-22 00:20:02下载
- 积分:1
-
z3
说明: 3
摘 要:研究了具有深度运动模糊效果的图像的复原算法.采用对运动模糊图像的傅里叶频谱进行
Radon 变换来估计运动模糊方向 ,在此方向上计算运动模糊图像的自相关来估计运动模糊长度 ,再
以运动模糊方向和运动模糊长度为参量结合超分辨力图像复原处理算法对比较严重的运动模糊图像进行复原.结果表明 ,该综合性算法能够较为精确地估算出运动模糊图像的模糊参量并取得较好的复原效果.(3 Abstract: The effect of motion blur with the depth of the image restoration algorithm. The use of motion-blurred images of the Fourier spectrum of the Radon transform to estimate the direction of motion blur in the direction of motion-blurred images to calculate the auto-correlation to estimate the motion blur length, then the direction of motion blur and motion blur parameters combined length of super-resolution image restoration algorithm to deal with more serious motion-blurred image recovery. The results show that the algorithm can be integrated more accurately estimate the motion-blurred images of the fuzzy parameters and obtain a better recovery results.)
- 2009-05-30 09:14:25下载
- 积分:1
-
SecureStringManagement
Secure String Management
- 2011-08-29 21:46:09下载
- 积分:1
-
23种设计模式中的一种简单工厂的源码,有几种不同的实现方式。
23种设计模式中的一种简单工厂的源码,有几种不同的实现方式。-23 kinds of design patterns in a simple plant source, there are several different ways.
- 2022-02-14 16:33:36下载
- 积分:1
-
C# SQL Server数据库连接
【实例源码】朋友们好,该功能在测试中突然发现,通过Windows身份验证时,服务器IP与数据库值为空的时候,测试连接也会提示连接成功,这个BUG请大家给予帮助,谢谢!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data;using System.Data.SqlClient;namespace ConData{ public partial class ConnectionData : Form { public ConnectionData() { InitializeComponent(); } private void btnSQLOK_Click(object sender, EventArgs e) { string strcon = string.Format("server={0};database={1};uid={2};pwd={3};", this.txtIP.Text.Trim(), txtDataBase.Text.Trim(), txtUser.Text.Trim(), txtPwd.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strcon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void btnWindowsOK_Click(object sender, EventArgs e) { string strCon = string.Format("server={0};database={1};Trusted_Connection=SSPI", txtWindowsIP.Text.Trim(), txtWindowsDB.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strCon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } }}
- 2014-07-11下载
- 积分:1