
ASP.NET
文章平均质量分 78
eee365
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
app 的摘要说明
using System;namespace BLL{ /// /// app 的摘要说明 /// public class App { public App() { // // TODO: 在此处添加构造函数逻辑 //原创 2009-09-01 22:53:00 · 1637 阅读 · 0 评论 -
递归枚举排列、组合的C#源码
Combinatorics.cs代码清单 using System; using System.Collections; using System.Data; /// /// 组合数学函数集 /// public class Combinatorics { #转载 2009-09-06 22:26:00 · 579 阅读 · 0 评论 -
利用正则表达
using System;using System.Configuration;using System.Collections.Generic;using System.Text.RegularExpressions;using System.Text;using System.Data;using RM.Common;namespace RM.Pub{原创 2009-09-03 21:18:00 · 409 阅读 · 0 评论 -
数据结构与算法(C#实现) N叉树
Heavenkiller(原创) public override uint Degree { get { return this.degree; } }转载 2009-09-06 22:39:00 · 426 阅读 · 0 评论 -
C#算法 插入排序
using System; public class InsertionSorter { public void Sort(int [] list) { for(int i=1;i<list.Length;++i) { int t=list[i]; int j=i; while((j>0)&&(转载 2009-09-06 22:38:00 · 267 阅读 · 0 评论 -
C#排序算法大全
冒泡排序 本人用了C#开发出冒泡排序算法。希望能为C#语言的学习者带来一些益处。不要忘了,学语言要花大力气学数据结构和算法。 using System; namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int转载 2009-09-06 22:36:00 · 349 阅读 · 0 评论 -
C#线索二叉树
using System; namespace BiThrTree { /// /// 定义结点类: /// class BTNode { public char data; public int ltag,rtag;//0表示线索,1表示结点 public BTNode lchild,rchild; } class BiThrTree转载 2009-09-06 22:35:00 · 378 阅读 · 0 评论 -
排序算法
Namespace 排序算法{ class Program { static void Main(string[] args) { Ebullition(56, 45, 32, 89, 54, 23, 10, 96, 34, 75, 62, 87); Select(转载 2009-09-06 22:30:00 · 370 阅读 · 0 评论 -
生成静态分页模板
/// /// 分页设置 /// /// 列表名称 /// 文件名 /// 列表行数 /// 当前页码 /// 总记录数 private void setPager(string strListName, string strFileN原创 2009-09-02 22:01:00 · 370 阅读 · 0 评论 -
分页
效果: 共1页 首页 上一页 1 2 3 4 5 6 7 8 9 10 ....下一页 末页 调用页面(Aspx): 在要显示分页导航的地方加个DIV标签: 调用页的代码(CS): DataSet ds = db.getDs(sql); this.PageInfo.InnerHtml = PageNums.GetPageNum(ds,Data原创 2009-09-01 23:03:00 · 388 阅读 · 0 评论 -
C#算法 希尔排序
using System; public class ShellSorter { public void Sort(int [] list) { int inc; for(inc=1;inc<=list.Length/9;inc=3*inc+1); for(;inc>0;inc/=3) { fo转载 2009-09-06 22:39:00 · 449 阅读 · 0 评论