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 阅读(2305) 评论(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 阅读(228) 评论(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 阅读(328) 评论(0) 推荐(0)