摘要: 今天天气很好,上午9点左右,天都全黑了,因为下暴雨 一个星期5天上班还是很不错;只是收入少了,我宁愿忙点; 明天星期六不下雨就好,可以去拍JIE HUN ZHAO ,哈~ 公司显示器太水了,每次到下午我眼睛就模糊不清了! 阅读全文
posted @ 2005-04-22 16:29 suifei 阅读(791) 评论(2) 推荐(0) 编辑
摘要: 今天继续研究代码解析的算法 这个是算法流程图 有图解可能更直观一点; 以下是c#源码: 1using System; 2using System.IO; 3using System.Text; 4using System.Windows.Forms; 5using System.Collections; 6 7namespace Code... 阅读全文
posted @ 2005-04-22 16:18 suifei 阅读(10339) 评论(9) 推荐(0) 编辑
摘要: /******************************************* * 十进制转二进制函数 *******************************************/ public string dtb(string buf){ int[] temp= new int[20]; string binary; int val=0,i=0,j; /*先将字符转化为十进制数*/ try{ val = Convert.ToInt32(buf); }catch{ val = 0; } if(val==0) { return(val.ToString()); } i=0; while(v 阅读全文
posted @ 2005-04-22 12:43 suifei 阅读(3308) 评论(1) 推荐(0) 编辑
摘要: 昨日又去关注了一下bindows,它的源码都是经过排版的,要看起来特别的吃力,比如象这样的句子: 1/* 2 * Bindows 1.10 3 * http://www.bindows.net/ 4 * Copyright (c) 2003-2004 MB Technologies 5 * 6 * Bindows(tm) belongs to MB Technologies (Georgia, USA). All rights reserved. 7 * You are not allowed to copy or modify this code. Commercial use requires 8 * license. 9 */ 10Array.prototype.indexOf=function(o){for(var i=0;i11return i;} 12return-1;};Ar 阅读全文
posted @ 2005-04-22 11:27 suifei 阅读(2048) 评论(4) 推荐(0) 编辑