码迷,mamicode.com
首页 >  
搜索关键字:generic algorithm    ( 18934个结果
Csharp 高级编程 C7.1.2
第七章 代理(1)一、代理要声明二、代理使用步骤声明代理初始化代理(使用 实例的方法名 作为参数)使用代理代码示例:/*C7.1.2*/using System;using System.Collections.Generic;using System.Linq;using System.Text;...
分类:其他好文   时间:2014-05-09 10:03:41    阅读次数:449
TCP和UDP Client 代码
最近学习要求做网络编程,使用从网上找了一些资料,主要是网络协议的分层等通讯,你可以查看英文版的资料:CScharp网络编程英文版下面直接给出代码吧,我想一看应该就懂。TCP Client 代码:using System;using System.Collections.Generic;using S...
分类:其他好文   时间:2014-05-09 04:50:07    阅读次数:507
C#导出数据至excel模板
开源分享最近一个客户要做一个将数据直接输出到指定格式的Excel模板中,略施小计,搞定其中包含了对Excel的增行和删行,打印预览,表头,表体,表尾的控制using System;using System.Collections.Generic;using System.Linq;using Sys...
分类:其他好文   时间:2014-05-09 04:33:07    阅读次数:495
NPOI 2.0 创建Excel文件
如果只是简单的处理的话,只需要引用下载压缩包里的NPOI.dll (office 2003)或NPOI.OOXML.dll(office 2007) 文件而已。 1 using System; 2 using System.Collections.Generic; 3 using System.Li...
分类:其他好文   时间:2014-05-09 04:29:08    阅读次数:324
C#发送邮件代码
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Mail;namespace MailGet{ public class Utility ...
分类:其他好文   时间:2014-05-09 03:30:26    阅读次数:269
NPOI 2.0 读取、编辑、保存Excel文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using NPOI.SS.UserModel;using NPOI.XSSF.UserModel;na...
分类:其他好文   时间:2014-05-09 03:29:58    阅读次数:318
泛型方法和空值
数据库中的数字和编程语言中的数字有显著的不同,数据库中的数字可以为空,C#中的数字不能为空。int? x = null; //此时x可以为空测试类(NullableTest)using System;using System.Collections.Generic;using System.Linq...
分类:其他好文   时间:2014-05-09 03:20:29    阅读次数:303
数字信号处理Day1自制电子音乐
第一天的课程感觉比较简单,主要介绍Karplus-Strong Algorithm 给出方程 y[n]=αy[n?M]+x[n],                          x[n]是输入,M是延迟,α是衰弱系数 我们要衰减D次,总的采样数就是D*M 下面是最直接的实现 关于x = x(:).';的语法是这样的,这是一个转置,但是是非共轭转置,如果是x',那么...
分类:其他好文   时间:2014-05-09 02:37:51    阅读次数:455
堆 的取最值删除操作和插入操作
堆的删除 按定义,堆中每次都只能删除第0个数据。为了便于重建堆,实际的操作是将最后一个数据的值赋给根结点,然后再从根结点开始进行一次从上向下的调整。调整时先在左右儿子结点中找最小的,如果父结点比这个最小的子结点还小说明不需要调整了,反之将父结点和它交换后再考虑后面的结点。相当于从根结点将一个数据的“下沉”过程。 堆的插入 每次插入都是将新数据放在数组最后。可以发现从这个新...
分类:其他好文   时间:2014-05-09 02:16:57    阅读次数:255
.net模拟登录博客园,使用httpWebRequest登录并发布随笔文章
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;using System.Runtime.InteropService...
分类:Web程序   时间:2014-05-08 23:12:06    阅读次数:622
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!