上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 44 下一页
摘要: 1. Serialize And Deserialize Binary TreeusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespaceSerializeAndDeserializeBinaryTree{classProgram{staticvoidMain(string[]args){//TestserializeList<string>serializeResult=newList<string>();nodes<string>rootN 阅读全文
posted @ 2012-06-07 16:37 higirle 阅读(912) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jeffwongishandsome/archive/2011/08/09/2133114.html 阅读全文
posted @ 2012-06-01 09:30 higirle 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1.如何取的winform程序中的默认图片,其实这个图片你用windows收索是收不到的,因为它被包含在dll中,具体实现如下:It is stored as a resource in the System.Windows.Forms.dll assembly. You could get a copy with Reflector. Open the assembly, open the Resources node, all the way down to "wfc.ico". Right-click, Save As. Not sure why you'd 阅读全文
posted @ 2012-05-30 16:31 higirle 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1.以下两种方式都是从默认的资源文件里读取字符串。方法一:string te= Resources.ResourceManager.GetString("a"); 方法二:ResourceManager fee = new ResourceManager("RedirectorConfigurationTool.Properties.Resources",this.GetType().Assembly); string a= fee.GetString("a");其实打开 vs生成的Resource类,可以看到,此类是VS自动生成的, 阅读全文
posted @ 2012-05-29 17:17 higirle 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 进程和线程的区别http://www.cnblogs.com/lmule/archive/2010/08/18/1802774.html简而言之,一个程序至少有一个进程,一个进程至少有一个线程. 线程的划分尺度小于进程,使得多线程程序的并发性高。另外,进程在执行过程中拥有独立的内存单元,而多个线程共享内存,从而极大地提高了程序的运行效率。线程在执行过程中与进程还是有区别的。每个独立的线程有一个程序运行的入口、顺序执行序列和程序的出口。但是线程不能够独立执行,必须依存在应用程序中,由应用程序提供多个线程执行控制。从逻辑角度来看,多线程的意义在于一个应用程序中,有多个执行部分可以同时执行。但操作系 阅读全文
posted @ 2012-05-03 09:44 higirle 阅读(559) 评论(0) 推荐(0) 编辑
摘要: http://c.chinaitlab.com/special/cpxsf/index.html1. 插入排序(Insertion Sort)算法的复杂度也是简单的,排序第一个需要1的复杂度,排序第二个需要2的复杂度,因此整个的复杂度就是 1 + 2 + 3 + …… + N = O(N ^ 2)的复杂度。//插入排序voidInsertSort(intarray[],intlength){ inti,j,key; for(i=1;i=0&&array[j]>key;j--) { array[j+1]=array[j]; } //... 阅读全文
posted @ 2012-04-18 15:31 higirle 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1. SIpZDNetchina SIP简介(网络频道 - >协议基础->SIP协议)http://net.zdnet.com.cn/network_security_zone/2008/0103/696053.shtml2. UDP3.加密tls4.tls, tcP5. dtls6. srtp7. rfc8.pbx9. rtp10. pstn11.Codec12. RTP详细讲解:1).[SIP]:a portal for promoting standardization knowledge http://www.tech-invite.com/Ti-sip-archi.htm 阅读全文
posted @ 2012-04-06 17:39 higirle 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1. Settings -> Wireless & netWorks ->Wi-Fi Settings ->(Root Menu)Advance, then you are able to set the wifi configuration. 阅读全文
posted @ 2012-04-06 09:20 higirle 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1. SIM卡是(Subscriber Identity Module 客户识别模块)的缩写,也称为智能卡、用户身份识别卡,GSM数字移动电话机必须装上此卡方能使用。它在一电脑芯片上存储了数字移动电话客户的信息,加密的密钥以及用户的电话簿等内容,可供GSM网络客户身份进行鉴别,并对客户通话时的语音信息进行加密。2.SMS短信即(Short Messaging Service) 3. SD卡(Secure Digital Memory Card)中文翻译为安全数码卡,是一种基于半导体快闪记忆器的新一代记忆设备,它被广泛地于便携式装置上使用,例如数码相机、个人数码助理(PDA)和多媒体播放器等4. 阅读全文
posted @ 2012-04-05 17:04 higirle 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 方法一:1. 连接USB,插入电脑2.用手在手机上方往下滑动,会出现几个菜单,其中有一个"choose a connection type". 选择 Disk Drive.你看到的也许是,Charge only, 点击切换到Disk Drive.3.这时你的电脑上就会出现USB标志的盘符,点开即可看到。方法二:对有些Android有些不同:1). 连接USB,插入电脑 2). 用手在手机上方往下滑动,会出现几个菜单,其中有一个"USB Connection". 其中通常有四个选项,我们选择USB Mass Storage.3). 这时你的电脑上就会出现U 阅读全文
posted @ 2012-03-29 17:29 higirle 阅读(2426) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 44 下一页