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...
阅读全文
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++; }
阅读全文
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...
阅读全文