10 2011 档案

摘要:算法的复杂度就降低为 O(n) ,速度大大提高。需求:前后数据x条不动,中间随机删除N条记录实现: Dictionary<string, int> dictA = GetArrayListFromTxt(this.txtFileNameA.Text);Dictionary<string, int> dictB = GetArrayListFromTxt(this.txtFileNameB.Text);Dictionary<string, int> dictC= new Dictionary<string,int>();StringBuilder 阅读全文
posted @ 2011-10-30 21:46 曾祥展 阅读(1091) 评论(1) 推荐(0) 编辑
摘要://添加async:false.即修改为同步//等ajax给bol赋值完毕后,才执行下面的js部分。而异步的话,还没有来得及赋值,就已经return了。 function vYes() { var bol = false; $.ajax( { type: "GET", url: "../aa.ashx", data: { txtVcode: $('#<%=txtV.ClientID%>').val() }, async: false, success: function (data) { ... 阅读全文
posted @ 2011-10-20 17:39 曾祥展 阅读(2136) 评论(0) 推荐(0) 编辑