posts - 59,  comments - 15,  views - 93522
07 2008 档案
Sql server 2005 connection string
摘要:Standard Connection str: (Sql server authentication)"Data Source=stone;Initial Catalog=pubs;User Id=sa;Password=;" - or -"Server=stone;Database=pubs;User ID=sa;Password=asdasd;Trusted_Connection=Fals... 阅读全文
posted @ 2008-07-08 18:21 stone 阅读(2293) 评论(0) 推荐(0) 编辑
Get depth of BTree
摘要:public int GetDepth(BTreeNode node){ if(node == null) return 0; else { int d1=GetDepth(node.LNode); int d2=GetDepth(node.RNode); } return d1>d2?d1++:d2++; } 阅读全文
posted @ 2008-07-02 09:47 stone 阅读(223) 评论(0) 推荐(0) 编辑
Quick sort C# code(2)
摘要:public class QuickSortNonRecursion{ public int Split(int[] data,int low,int high) { if(data == null) throw new ArgumentNullException(); if(low<0 || high >= data.length) throw new ArgumentOutOfR... 阅读全文
posted @ 2008-07-01 10:45 stone 阅读(314) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示