码迷,mamicode.com
首页 >  
搜索关键字:red    ( 13693个结果
Javascript 匿名函数与闭包
请见如下一个闭包示例:color = "red";var obj = { color: "blue", getColor: function () { function displayColor() { return this.color; ...
分类:编程语言   时间:2014-09-21 04:12:10    阅读次数:208
HDU - 5024 Wang Xifeng's Little Plot
Problem Description 《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel ...
分类:其他好文   时间:2014-09-20 21:15:59    阅读次数:267
HDU 5024 Wang Xifeng's Little Plot(2014广州网络赛1003)
写了1h的DFS,简直被自己的代码吓哭了。。不过起码还是思路清晰,QUQ~ 说一下题意吧: 题意是求一条最长路,最多能经过一次转弯,并且其角度只能为90度。 拿第一个样例来说:(0,1)->(1,2)->【转弯】(2,1) ,所以答案是3. 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5024 代码如下: #include #in...
分类:其他好文   时间:2014-09-20 20:02:59    阅读次数:272
HDU 5024 Wang Xifeng's Little Plot (bfs)
Problem Description 《Dream of the Red Chamber》(also 《The Story of the Stone》) is one of the Four Great Classical Novels of Chinese literature, and it is commonly regarded as the best one. This novel ...
分类:其他好文   时间:2014-09-20 18:59:59    阅读次数:194
red hat linux 6.4 DNS配置(怎么不让发表?)
1安装DNS服务器组建安装bind2启动服务3进入dns主配置文件named.conf4编辑配置文件。(监听的端口注释或写上自己需要监听端口的IP.注释IPv6.允许谁来查询,注释掉,表示所有人都可以)5编辑named.1912.zone文件。申明一个正向区域,一个反向区域。正向区域反向区域6复制dns两个..
分类:系统相关   时间:2014-09-19 14:00:06    阅读次数:321
Leetcode: Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:其他好文   时间:2014-09-19 13:43:05    阅读次数:194
如何查询centos查看系统内核版本,系统版本,32位还是64位
查看centos内核的版本: 1)[root@localhost ~]# cat /proc/version Linux version 2.6.18-194.el5 (mockbuild@builder10.centos.org) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Fri Apr 2 14:58:1...
分类:其他好文   时间:2014-09-19 12:20:05    阅读次数:238
red hat linux6.4 搭建dhcp服务器
新浪博客太坑了,以前写的全部转移51cto了。1查看服务器是否安装DHCP服务2用yum安装dhcp服务3查看服务的配置文件,里面是空的4复制dhcp的模板到配置文件里5用vim编辑配置文件.在里面申明一个网段,以及IP地址的变化范围6重新启动dhcp服务。/etc/init.d/dhcpdrestart7关闭防火墙..
分类:系统相关   时间:2014-09-19 10:17:26    阅读次数:278
SciPy安装
平台:Linux version 2.6.32-220.13.1.el6.x86_64 (mockbuild@c6b6.bsys.dev.centos.org) (gcc version 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC) ) #1 SMP Tue Apr ...
分类:其他好文   时间:2014-09-19 04:28:14    阅读次数:438
MVC Controller向View传值(ViewData与ViewBag)
最近在开发项目中,使用的是ASP.NET MVC 由于之前并没有接触,对于它的传值方式有些陌生,在这里进行初步总结积累学习!   一:使用   ViewData使用: public ActionResult Index() { List colors = new List(); colors.Add("red"); colors.Add("green"); colors.Add...
分类:Web程序   时间:2014-09-18 20:44:04    阅读次数:241
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!