C#解决约瑟夫问题代码using System;namespace heut{ class Class1 { public static void Main() { int[] a = new int[17]; int sum = 17;//共有8个人;……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3028浏览 459个赞
C#代码解决约瑟夫问题设有n个人围坐一圈,现以某个人开始报数,数到m的人出列,接着从出列的下一个人开始重新报数,数到m的人又出列,如此下去,直到所有人都出列为止.按出列顺序输出.public class Josephas //从第start人开始计数,以alter为单位循环记数出列,总人数为total public int [……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1629浏览 2748个赞
C#导出数据到CVS文件的通用类代码,通过这个类可以很简单的定义数据格式,并导出到CVS文件//这里写了一个通用的类 using System;using System.Data;using System.Configuration;using System.Collections.Generic;using System.Web;usin……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1531浏览 2039个赞
C#导出数据到Excel的代码using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Windows.Forms;using System.IO; namespace TopAPI{ class E……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2719浏览 1434个赞
C#中通过二维数组创建矩阵 static double[][] CreateMatrix(int rows, int cols) { double[][] result = new double[rows][]; for (int i = 0; i < rows; ++i) result[i] = ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1180浏览 977个赞
C#中矩阵乘法演示代码static double[][] MatrixMultiplication(double[][] matrixOne, double[][] matrixTwo){ int aRows = matrixOne.Length; int aCols = matrixOne[0].Length; int bRows = mat……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1984浏览 1390个赞
该方法并不检测矩阵中没一个单元格的值是否相等,因为其类型是double,只是检测单元格的值是否接近,double也不能判断相等。static bool areMatricesEqual(double[][] matrixOne, double[][] matrixTwo, double delta){ int aRows = matrixOn……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1347浏览 2635个赞
C# 异步连接Sql Server数据库的方法,.net最新版提供了await方法,可以使我们可以很容易实现到数据库的异步连接readonly string ConnectionString = "Data Source=database_server_name;Initial Catalog=Store;Integrated Security……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1716浏览 2865个赞
在软件设计相关领域,“堆(Heap)”的概念主要涉及到两个方面:一种是数据结构,逻辑上是一颗完全二叉树,存储上是一个数组对象(二叉堆)。另一种是垃圾收集存储区,是软件系统可以编程的内存区域。本文所说的堆指的是前者,另外,这篇文章中堆中元素的值均以整形为例堆排序的时间复杂度是O(nlog2n),与快速排序达到相同的时间复杂度. 但是在实际应用中,我们往往采用快……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2872浏览 2330个赞
C# 实现堆排序算法代码 1. 什么是堆?可以想像成一个二叉树,对于每一个结点,如果父结点比左右孩子都大叫大顶堆,如果比左右孩子小叫小顶堆。堆不一定要用树来表示,也可以用普通的数组来表示,如果数组索引从1开始,那么索引为i的结点的左右孩子的索引分别为2i和2i+1。2.……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1167浏览 1980个赞
这是一个C#实现的屏幕抓取程序,可以抓取整个屏幕保存为指定格式的图片,并且保存当前控制台缓存到文本using System;using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Drawing;usin……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1616浏览 1552个赞
C#检测指定的URL网址是否可用,相当于一个针对网址的ping操作,非常实用using System;using System.Media;using System.Net;using System.Threading;namespace RobvanderWoude{ class PingSite { static bool beep……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2592浏览 1128个赞
此代码可以返回指定PDF文件有多少页using System;using System.IO;using System.Text.RegularExpressions;using System.Windows.Forms;namespace RobvanderWoude{ class PDFPageCount { static int ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2701浏览 1948个赞
C#从windows剪贴板获取并显示文本内容using System;using System.Windows.Forms;namespace RobvanderWoude{ class Paste { [STAThread] static int Main( string[] args ) { if ( args.Lengt……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2534浏览 1781个赞
这段代码可以在指定的目录创建一个字节为0的临时文件using System;using System.IO;namespace RobvandeWoude{ class NewTempFile { static int Main( string[] args ) { if ( args.Length > 0 ) { ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3002浏览 963个赞
C#代码将指定目录的所有文件名转换成小写using System;using System.IO;using System.Linq;namespace RobvanderWoude{ class LoCase { static int Main( string[] args ) { string dir = string.Em……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1333浏览 2644个赞
C#控制台列出当前所有可用的打印机列表// The initial C# code for the WMI query was generated by WMI Code Generator, Version 5.00, http://www.robvanderwoude.com/wmigen.phpusing System;using System……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1940浏览 2571个赞
C#列出所有物理网络适配器using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Management;using System.Text;namespace RobvanderWoude{ ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2646浏览 922个赞
C#判断指定分区是否是ntfs格式using System;using System.IO;namespace RobvanderWoude{ class IsNTFS { public static int Main( string[] args ) { try { if ( args.Length == 0 )……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2925浏览 1014个赞
C#返回当前系统所有可用驱动器符号// The initial C# code for the "plain" WMI query was generated by// WMI Code Generator, Version 5.00, http://www.robvanderwoude.com/wmigen.phpusing S……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2101浏览 140个赞
C#返回指定驱动器是否是Fat分区格式using System;using System.IO;namespace RobvanderWoude{ class IsFAT { public static int Main( string[] args ) { try { if ( args.Length == 0 )……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2364浏览 1549个赞
C#判断当前系统是32位还是64位// The initial C# code for the "plain" WMI query was generated by WMI Code Generator, Version 5.00, http://www.robvanderwoude.com/wmigen.phpusing Syst……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1625浏览 514个赞
C#隐藏控制台的键盘输入using System;namespace RobvanderWoude{ class HideInput { static int Main( string[] args ) { try { bool clearscreen = false; if ( args.Length >……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1359浏览 2036个赞
C#获得父进程PID编号的完整源代码using System;using System.Diagnostics;namespace RobvanderWoude{ class GetMyPID { static int Main( string[] args ) { #region Command Line Parsing ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2167浏览 1480个赞
C#实现的FastPing代码,知己开发一个ping的工具using System;using System.Net.NetworkInformation;namespace RobvanderWoude{ class FastPing { static int Main( string[] args ) { try { ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3067浏览 1933个赞
C#获得本机可用驱动器编号列表using System;using System.Collections.Generic;using System.IO;namespace RobvanderWoude{ class Drives { static int Main( string[] args ) { bool showuse……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2194浏览 1633个赞
C#编写的一个简单的命令行计算器代码using System;using System.CodeDom.Compiler;using System.Globalization;using System.Reflection;using System.Threading;namespace RobvanderWoude{ class ClCa……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2836浏览 1241个赞
一个自定义Sql Server字符串分割函数split,类似C#里的split函数,功能虽然不是很强大,应付一般的问题足矣 函数定义Create function [dbo].[split](@SourceSql varchar(max),@StrSeprate varcha……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2763浏览 270个赞
Sql Server定义一个字符串分割函数,类似于C#里的split函数下面的代码使用了临时表作create function f_split(@c varchar(2000),@split varchar(2)) returns @t table(col varchar(20)) as begin……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1658浏览 1223个赞
C#随机设置900-1100毫秒的延迟using System;using System.Threading;///<summary>/// A time delay of 900..1100 milliseconds///</summary>namespace RobvanderWoude{ class WaitA……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1395浏览 2652个赞
C#从远程服务器获得本机的上网ipusing System;using System.IO;using System.Net;using System.Text.RegularExpressions;namespace RobvanderWoude{ class WANIP { static int Main( string[] arg……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2834浏览 1945个赞
C#将制定目录的文件名都转换成大写using System;using System.IO;using System.Linq;namespace RobvanderWoude{ class UpCase { static int Main( string[] args ) { string dir = string.Empty……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2901浏览 361个赞
C#重定向标准输入到标准输出using System;using System.IO;using System.Runtime.InteropServices;namespace RobvanderWoude{ class Tee { static int Main( string[] args ) { #region Comm……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1501浏览 156个赞
C#读取文件或者字符流的最后几行,类似linux的tail命令using System;using System.Collections.Generic;using System.IO;using System.Runtime.InteropServices;namespace RobvanderWoude{ class Tail { ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2557浏览 390个赞
C#获取指定字符串的MD5和SHA*加密代码using System;using System.Text;using System.Security.Cryptography;namespace StringHash{ class StringHash { static int Main(string[] args) { try……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2479浏览 169个赞
C#读取或者设置ScrollLock状态,允许滚动状态读取或者设置using System;using System.Runtime.InteropServices;using System.Windows.Forms;namespace RobvanderWoude{ public class ScrollLock { [DllImpo……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1568浏览 158个赞
C#在多行字符串中查找指定信息,类似linux下的grep功能using System;using System.IO;using System.Runtime.InteropServices;using System.Text.RegularExpressions;namespace RobvanderWoude{ class Rx……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2316浏览 1819个赞
C# 修改指定文件的最后修改时间的时间戳using System;using System.IO;using System.Linq;namespace RobvanderWoude{ class CloneDate { static int Main( string[] args ) { bool debug = false;……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2740浏览 2869个赞
C# 读取和设置大小写切换键状态可以通过程序查看或者设置当前键盘上的Capslock健的状态是否打开using System;using System.Runtime.InteropServices;using System.Windows.Forms;namespace RobvanderWoude{ public class CapsLoc……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1685浏览 988个赞
C#返回指定ASCII码的十进制字符using System;namespace RobvanderWoude{ class Asc { static int Main( string[] args ) { if ( args.Length != 1 ) { return WriteError( string.Empt……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1632浏览 923个赞
在运行时反射是程序检查其所拥有的结构,尤其是类型的一种能力;这是元编程的一种形式。它同时也是造成混淆的重要来源。在这篇文章中将试图明确解释在 Go 中的反射是如何工作的。每个语言的反射模型都不同(同时许多语言根本不支持反射)。不过这篇文章是关于 Go 的,因此接下来的内容“反射”这一词表示“在 Go 中的反射”。转自:http://www.mikespook……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2443浏览 2639个赞
使用前请先引用:ThoughtWorks.QRCode.Codecusing ThoughtWorks.QRCode.Codec; //content = "欢迎光临75271.com"; QRCodeEncoder qrCodeEncoder = new QRCodeEncoder(); ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1779浏览 1100个赞
背包问题(Knapsack problem)的描述为:给定一组物品,每种物品都有自己的重量和价格,在限定的总重量内,我们如何选择,才能使得物品的总价格最高class Item { public int weigth; public int price; } static int ……继续阅读 » 水墨上仙 4年前 (2021-03-12) 1362浏览 2017个赞
C#动态规划解决0-1背包问题转自:http://blog.csdn.net/smart819819/article/details/8694272// 利用动态规划解决0-1背包问题using System;using System.Collections.Generic;using System.Linq;using System.Text;……继续阅读 » 水墨上仙 4年前 (2021-03-12) 3046浏览 146个赞
C#通过QRCode生成二维码public class QRCode { /// <summary> /// 根据ID生成一个二维码 /// /// </summary> /// <param name="cardID">&l……继续阅读 » 水墨上仙 4年前 (2021-03-12) 2052浏览 407个赞