- 博客(79)
- 资源 (5)
- 收藏
- 关注
原创 MSSQLMOD11-2身份证号码校对_某年某月_新浪博客
DECLARE @sfz NVARCHAR(100),@i INT,@m INTSET @sfz='51343319831005429X'SET @i=1SET @m=len(@sfz)WHILE @i<@mBEGINSET @sfz=stuff(@sfz,2*@i,0,' ');SET @i+=1;END--SELECT * FROM dbo.f_split(@s...
2020-11-05 17:22:29
255
原创 c#线性回归方程y=kx+b_某年某月_新浪博客
/-------- 新的类 点 -------------/ public classcls_pointD { public decimal x { get; set; } public decimal y { get; set; } public PointF to_pf() { ...
2020-09-26 11:30:41
1403
原创 c#将文章存入图片_某年某月_新浪博客
Bitmap bt = new Bitmap(128, 128); //填充标识区 Color c =Color.White; for (int h= 0; h < bt.Height; h++) { for (int w = 0; w <...
2019-09-03 16:49:27
89
原创 vs2010MVC爬-虫虫S博客_某年某月_新浪博客
//引用using HtmlAgilityPack;public ActionResult js_blogsn(){xdfDataContext dt_xdf = new xdfDataContext();ResDataMsg rs = new ResDataMsg();try{HtmlWeb htmlWeb = new HtmlWeb();htmlWeb.Overri...
2019-07-08 16:45:24
113
原创 圆周率20000位_某年某月_新浪博客
00000-000003.00001-00050 1415926535 897932384 626433832795028841 971693993751000051-00100 5820974944 592307816 406286208998628034 825342117067900101-00150 8214808651 328230664 709384460...
2019-06-23 11:22:38
348
原创 C# 超大数 计算 圆周率(π)2万位
Stopwatch sp = new Stopwatch(); sp.Start(); //List<clsFS> ls = new List<clsFS>(); //clsBigQty b = new clsBigQty(); string x = ""; ...
2019-06-22 23:38:52
3692
原创 尤里復仇规则修改(0513b)
/**********************************************************************链接:https://pan.baidu.com/s/1jMmQS89RGFnU5HKm2KFUKg提取码:1vio**************************************************************...
2019-05-13 11:38:09
1605
原创 算法導論17-大數分解
#region 有根樹-左孩子右兄弟表示法 public class clsTree { public clsTree_dtl root { get; set; } public List<clsTree_dtl> ls = new List<clsTree_dtl>(); } public cl...
2019-04-15 15:02:22
165
原创 算法導論15-2叉樹
#region 二叉搜索樹 public class clsTree2 { public int key { get; set; } public int val { get; set; } public int lv { get; set; } public int index { get; set; }...
2019-04-15 14:56:57
215
原创 算法導論16-紅黑樹
#region 紅黑樹 public class clsTree_rb { public int color { get; set; } public int key { get; set; } public int val { get; set; } public int lv { get; set; }...
2019-04-15 14:54:08
126
原创 算法導論18-B樹插入
#region B樹 public class clsBtree { public int num = 0; //Keys 個數 public int[] keys_ls = new int[10]; //Keys 隊列 public bool leaf = tru...
2019-04-15 14:38:20
117
原创 传奇3工具-爆率批量修改_某年某月_新浪博客
链接:https://pan.baidu.com/s/1HPtxopKtLUKOl4N937PX5A提取码:lwkz
2019-04-10 15:20:22
4094
原创 传奇3架设-外网篇_某年某月_新浪博客
使用客戶端:链接:https://pan.baidu.com/s/1Cdptc384Vd-Hi8jcuhGMZg提取码:yk50登录器:链接:https://pan.baidu.com/s/1k2U-V14ZM3itjn2YhYnSaA提取码:duep云主機:天翼云,4G 內存 ,WIN2008 R2虛擬機:(VBox)win2003 , 1.8G 內存...
2019-04-02 15:42:36
5691
5
原创 算法導論16-紅黑樹_某年某月_新浪博客
public static clsTree_rb trb = null; private void btn紅黑樹_Click(object sender,EventArgs e) { trb =toolTree_rb.get_tr2(15); clsTree_rbt6 = toolTree_rb.ge...
2019-03-27 08:58:11
137
原创 算法導論15-二叉樹_某年某月_新浪博客
private void btn二叉樹搜索_Click(object sender,EventArgs e) { t15 =toolTree2.get_tr2(15); clsTree2t6 = toolTree2.get_tr2(6); clsTree2t18 = too...
2019-03-21 16:10:03
85
原创 算法導論14-除法散列法_某年某月_新浪博客
private void btn散列表_Click(object sender,EventArgs e) { int[] a =get_intArray(100); a =sjpxsz(a); var b =a.Take(20).ToArray(); ...
2019-03-19 10:14:59
200
原创 算法導論13-有根樹[左孩子右兄弟表示法]_某年某月_新浪博客
#region 左孩子右兄弟表示法 public classclsTree { public clsTree_dtl root { get; set; } public List ls = new List(); } public classclsTree_dtl { pub...
2019-03-14 16:49:58
258
原创 算法導論12-雙向鏈錶_某年某月_新浪博客
#region 雙向鏈錶 //雙向鏈錶 public class clsDL { public clsDL_dtl head { get; set; } public clsDL_dtl tail { get; set; } public List ls = new List(); } /...
2019-03-13 11:39:10
100
原创 算法導論11-線性時間排序_某年某月_新浪博客
//線性時間排序 void xxsjpx(int[] a,int[] b) { foreach(var item in a) { var x = a.ToList().FindAll(s=> s < item).Count; ...
2019-03-11 12:33:47
80
原创 算法導論10-快速排序_某年某月_新浪博客
//快速排序 void kspx(int[] a,int p,int r) { if(p { int q = kspx_part(a, p,r); kspx(a, p, q - 1); kspx(...
2019-03-11 10:55:42
90
原创 算法導論9-2叉堆排序_某年某月_新浪博客
//2叉堆排序 int dpx(int[] a,int i,bool isdtl,int ix) { ix++; try { int f = i / 2; int l = i * 2; ...
2019-03-08 13:00:15
130
原创 算法導論8-隨機排序數組_某年某月_新浪博客
//隨機排序數組 int[] sjpxsz(int[] a) { int n =a.Length; int[] p =new int[n]; for (int i= 0; i < n; i++) { p[i] = new...
2019-03-08 08:57:25
115
原创 算法導論7-遞歸算法_某年某月_新浪博客
//最大子數組邊界 int[] zdzszbj(int[] a,int low,int mid,inthigh) { intleft_Sum = int.MinValue; intright_Sum = int.MinValue; int Sum =0; ...
2019-03-07 14:58:24
167
原创 算法導論6-逆序對_某年某月_新浪博客
//逆序對 string[] nxd(int[] a,out int k) { List ls =new List(); int ix =0; for (int i= 0; i < a.Length; i++) { ...
2019-03-07 13:19:09
71
原创 算法導論5-冒泡排序_某年某月_新浪博客
//冒泡排序 int[] mppx(int[] a, out int k) { int ix =0; for (int i= 0; i < a.Length; i++) { for (int j = 0; j <a.Len...
2019-03-07 10:11:57
104
原创 算法導論4-分治法_某年某月_新浪博客
//分治法 int[] fzf(int[] a, int[] b, out int k) { int[] a2 =new int[a.Length + b.Length]; a =a.ToList().OrderBy(s => s).ToArray(); b =...
2019-03-07 09:34:25
88
原创 算法導論3-二分查找_某年某月_新浪博客
//二分查找 int efcz(int[] a, int goal, out int k) { int time1= 0; //检测初始时不变式的真值 if(a.Length == 0) { k = 0; ...
2019-03-07 09:31:45
117
原创 算法導論2-插入排序_某年某月_新浪博客
//插入排序 int[] crpx(int[] num1, out int k) { int ix =0; for (int i= 1; i < num1.Length; i++) { int j = i - 1; ...
2019-03-07 09:29:58
72
Acrobat_Pro_8.1.2注册机
2011-11-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人