先序遍历:/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), ...
分类:
其他好文 时间:
2015-03-18 13:48:17
阅读次数:
124
第一种: alert alert("hello!")第二种:window.confirm() A : 弹出窗口
分类:
Web程序 时间:
2015-03-18 13:47:17
阅读次数:
417
文件命名在 web 项目中,所有的文件名应该都遵循同一命名约定。以可读性而言,减号(-)是用来分隔文件名的不二之选。同时它也是常见的 URL 分隔符(i.e.//example.com/blog/my-blog-entryor//s.example.com/images/big-black-back...
分类:
其他好文 时间:
2015-03-18 13:48:06
阅读次数:
148
Timers are for when you want to do something once in the future - tickers are for when you want to do something repeatedly at regular intervals. Here'...
分类:
其他好文 时间:
2015-03-18 13:48:35
阅读次数:
125
zz:http://www.williamlong.info/archives/1264.html个人网络密码安全是整个网络安全的一个重要环节,如果个人密码遭到黑客破解,将引起非常严重的后果,例如网络银行的存款被转账盗用,网络游戏内的装备或者财产被盗,QQ币被盗用等等,增强网民的网络安全意识是网络普...
分类:
其他好文 时间:
2015-03-18 13:48:46
阅读次数:
117
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull./** * Definition for singly-linked list. * class ListNod...
分类:
其他好文 时间:
2015-03-18 13:45:39
阅读次数:
107
http://www.cnblogs.com/Kevin_z/archive/2010/03/05/1679031.htmlhttp://blog.csdn.net/zhengdan66/article/details/5553635
分类:
其他好文 时间:
2015-03-18 13:46:56
阅读次数:
104
using System;using iTextSharp.text;using iTextSharp.text.pdf;using System.IO;namespace iTextSharp.Demo{/**//// /// Making a document with a header con...
分类:
其他好文 时间:
2015-03-18 13:46:35
阅读次数:
334
首先是我们进行窗口间的跳转,尤其注意的是winform程序里面的空间都是中线程安全的。但是注意的是如果你在一个线程中操纵另外的控件,这时候会提示你一个错误,这个错误的解决方法准备单独的在另一篇文章中来讲。好了,这时候回到主题上吧,怎么来实现界面间的跳转吧!假设我们想要从Form1跳转到Form2,那...
下载zendstudio12文件http://www.zendstudio.net/zend-studio-all-in-one-download/下载破解补丁http://pan.baidu.com/s/1qW0rprI安装zendsudio文件,这个就不用说了,直接下一步,等待安装完成后。解压破...
分类:
其他好文 时间:
2015-03-18 13:47:42
阅读次数:
214
1.sql语句的执行(并非简单的sql语句就可以,见注释)SqlConnection Conn=new SqlConnection(data.strconn); Conn.Open(); string SqlStr="select * from teacher order by teacher...
分类:
其他好文 时间:
2015-03-18 13:45:14
阅读次数:
110
将下面SysApplication这个类复制到工程里面,然后在每个Acitivity的oncreate方法里面通过SysApplication.getInstance().addActivity(this);添加当前Acitivity到ancivitylist里面去,最后在想退出的时候调用SysAp...
分类:
移动开发 时间:
2015-03-18 13:44:14
阅读次数:
180
一直认为VS的快捷键跟eclipse比起来差远了,那些由于不知道还有如此多有效却不知的快捷键阿 1. 检查括号匹配(在左右括号间切换): Ctrl +] 2. 选中从光标起到行首(尾)间的代码: Shift + Home(End) 3、凝视选定块:Control+K,Control+C 4、取消.....
分类:
其他好文 时间:
2015-03-18 13:44:03
阅读次数:
115
凸包模板题 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int n,top; 7 struct point{ 8 double x,y; 9 }tree[105],sta[105];10 d...
分类:
其他好文 时间:
2015-03-18 13:44:31
阅读次数:
113
1. html页面全部代码2.json.ashx页面全部代码using System;using System.Web;using System.Web.Script.Serialization;using System.Collections.Generic;public class json :...
分类:
编程语言 时间:
2015-03-18 13:44:48
阅读次数:
102
之前就载ubuntu14.0.04上安装了sublime,在学习python的时候,基本不怎么使用中文,所以就没有解决它无法进行中文输入的问题,今天心血来潮,想解决一下这个问题,也是为以后少点麻烦,下面我列出我解决的过程与步骤: 1.保存下面的代码到文件sublime_imfix.c(位于~目...
分类:
系统相关 时间:
2015-03-18 13:44:49
阅读次数:
160
1.进程 1)调用unix/linux系统中的进程函数fork(),用法和linux相同,调用成功返回0,失败返回-1:import osprint 'Process (%s) start...' % os.getpid()pid = os.fork()if pid==0: print 'I...
分类:
编程语言 时间:
2015-03-18 13:42:59
阅读次数:
227