码迷,mamicode.com
首页 >  
搜索关键字:visit    ( 1001个结果
【编程马拉松】【022-网页浏览历史】
标准的网页浏览器都提供一个功能:保留最近浏览过页面的历史记录。通过后退或向前按钮就能在历史记录之间跳转。现在,请你模拟这个功能,接收如下三条指令:1. BACK:回退功能,即回退到上一个访问的页面;2. FORWARD:使用BACK返回上一页之后,可以使用FORWARD回到下一页;3. VISIT url:访问指定url的页面,并且所有FORWARD的页面都被清空。标准的网页浏览器都提供一个功能:保留最近浏览过页...
分类:Web程序   时间:2016-07-06 10:22:07    阅读次数:236
[dfs] [FloodFill] POJ1979 Red And Black
分析题目: 用dfs实现FloodFill。 @和.实际上都是表示该格可走,#则表示该格不能走,想到用 bool map[i][j] 存储是否可走。 用visit[i][j]表示是否已经访问过。 从一个黑格只能到达上,下,左,右四块相邻的格,该格应该未访问过且该格不能是红格。 inmap(i, j) ...
分类:其他好文   时间:2016-07-05 22:35:58    阅读次数:200
sqoop example
案例: 1. 把原始log数据加载到表beifenglog中; 2. 建立子表beifenglog_hour_visit,存贮常用字段,并从原表中提取数据到子表中; 3. 提取原表数据过程中,使用UDF处理字段信息,存储到子表中; 1. 把原始log数据加载到表beifenglog中; 加载原表数据 ...
分类:其他好文   时间:2016-06-28 16:58:39    阅读次数:221
html div 添加链接
<html> <body> <a href="http://www.w3school.com.cn/" target="_blank">Visit W3School!</a> <p>如果把链接的 target 属性设置为 "_blank",该链接会在新窗口中打开。</p><div onclick=" ...
分类:Web程序   时间:2016-06-22 00:20:41    阅读次数:199
Spring4.2.6+SpringMVC4.2.6+MyBatis3.4.0 整合
【0】README 0)本文旨在 review Spring4.2.6+SpringMVC4.2.6+MyBatis3.4.0 整合过程; 1)项目整合所涉及的源代码,please visit  https://github.com/pacosonTang/MyBatis/tree/master/spring4mvc_mybatis3 2)由于晚辈我还不怎么熟悉maven,所以没有用mave...
分类:编程语言   时间:2016-06-21 07:54:12    阅读次数:732
POJ2135 Farm Tour
Farm Tour Time Limit: 2MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u Description When FJ's friends visit him on the farm, he likes to show t ...
分类:其他好文   时间:2016-06-17 00:44:17    阅读次数:237
nyoj 27 水池数目
水池数目 时间限制:3000 ms | 内存限制:65535 KB 难度:4 1 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 using namespace std; 6 7 int visit[105][105] ...
分类:其他好文   时间:2016-06-09 00:27:09    阅读次数:151
获取piwik里存的ip地址。
visitlog表里存的IP是看不出来IP地址的,PIWIKFAQ:http://piwik.org/faq/how-to/faq_158/HowdoIselectIPaddressesorVisitorIDdirectlyfromthedatabase?SELECTinet_ntoa(conv(hex(location_ip),16,10))asip,conv(hex(idvisitor),16,10)asvisitorIdFROMpiwik_log_visit;可以看出..
分类:其他好文   时间:2016-06-08 10:49:18    阅读次数:956
leetcode 之 Permutation
描述: 其实我没有看到这个题 给定一个数n, 求其全排列。 如3 则输出 [1, 2, 3][1, 3, 2][2, 1, 3][2, 3, 1][3, 1, 2][3, 2, 1] 使用回溯法求解。 使用n维数组visit 来标记一个数是否已经加入集合。回溯树如下: 深度优先搜索,当搜索深度为n时 ...
分类:其他好文   时间:2016-05-25 16:40:09    阅读次数:131
[Chapt2] Python visit Redis based on HiRedis
michael@ubuntu:~$wget-qhttp://peak.telecommunity.com/dist/ez_setup.pymichael@ubuntu:~$sudopythonez_setup.pymichael@ubuntu:~$sudopython-measy_installredishiredismichael@ubuntu:~$pythonPython2.7.3(default,Jun222015,19:33:41)[GCC4.6.3]onlinux2Type"help","copyr..
分类:编程语言   时间:2016-05-24 06:59:44    阅读次数:213
1001条   上一页 1 ... 68 69 70 71 72 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!