摘要: 长春现场赛HDU 4821思路:这题周赛的时候没做出来,有点可惜了。要是当时记起来unsigned long long自己主动取模,然后提醒一下大帝的话,后续大帝就能过了。唉,导致让他取了好多个模,最后还是WA了。太不机智了。范逗了。这题我是从前面哈希的。看到题解中从后面哈希。就是不爽,所以自己从前... 阅读全文
posted @ 2015-12-27 21:20 zfyouxi 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Time travelProblem DescriptionAgent K is one of the greatest agents in a secret organization called Men in Black. Once he needs to finish a mission by... 阅读全文
posted @ 2015-12-27 20:14 zfyouxi 阅读(261) 评论(0) 推荐(0) 编辑
摘要: [问题描写叙述] 单击IE底部下载工具栏没反应,点击“另存为”也没反应[解决方法] 打开IE11,依次打开菜单:Internet 选项 -> 高级 -> 重置,重置完成后,重新启动电脑就可以。 阅读全文
posted @ 2015-12-27 18:34 zfyouxi 阅读(1250) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then right to left for the next level and al... 阅读全文
posted @ 2015-12-27 17:53 zfyouxi 阅读(125) 评论(0) 推荐(0) 编辑
摘要: cookie对于我们使用者来说,有时帮助还是挺大的,比方对于一些不是特别重要的站点,比方公司的測试平台,每次登陆都要手动输入username和password非常繁琐。所以为了更少的引入其他框架,就直接使用js在登陆的页面中写一个记录username和password的代码。并且不用在前台显示是否记... 阅读全文
posted @ 2015-12-27 16:38 zfyouxi 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 今天在看C#的基础知识,同是面向对象的语言。看到重载和重写。我突然想了半天。有点模糊了,立即度娘一番。回忆起自己在北京实习的项目,实际上,开发中经经常使用到重载和重写,自己不去总结罢了。今天找了一份比較好的博客,整理下来,备以后自己回来重温,起码以前我思考过这种问题。首先我们来讲讲:重载(Over... 阅读全文
posted @ 2015-12-27 14:26 zfyouxi 阅读(2820) 评论(0) 推荐(0) 编辑
摘要: return RedirectToAction(Index); //跳转到Index控制器" %> Login 跳转到Login控制器下的Index视图 ">跳转到同样控制器下的Index视图 ... 阅读全文
posted @ 2015-12-27 13:50 zfyouxi 阅读(572) 评论(0) 推荐(0) 编辑
摘要: Here is the note for lecture three.the linear modelLinear model is a basic and important model in machine learning.1. input representation The data we... 阅读全文
posted @ 2015-12-27 13:16 zfyouxi 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 一、出问题的场景1、Sensorservice线程正在处理compass sensor事件的过程中。检查了一次buffer的指针的有效性,并在稍后会传递到AKM获取数据的函数接口中使用2、Sensorservice线程所在进程的负责跨进程通信的Binder线程在sensorservice线程检查bu... 阅读全文
posted @ 2015-12-27 12:27 zfyouxi 阅读(315) 评论(0) 推荐(0) 编辑
摘要: atitit.团队建设--要不要招技术储备人才的问题1.人才的储备和招聘。 11.1.模式1。养兵千日,用兵一时 11.2.模式2,暂时抱佛脚,也不多招一个人 12.一、关于人才储备战略的目光“去思考问题 23.最佳实践::依据实际情形来招人90%模式1+10%模式2 2作者::老哇的爪子Attil... 阅读全文
posted @ 2015-12-27 11:33 zfyouxi 阅读(181) 评论(0) 推荐(0) 编辑
摘要: C语言版:void swap (int a, int b){ a = a ^ b; b = a ^ b; a = a ^ b;}原理: a ^ a == 0 0 ^ b == b 异或:同则为零。异则为一 a ^ (b ^ a) ==... 阅读全文
posted @ 2015-12-27 10:56 zfyouxi 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 1、错误描写叙述此行的多个标记:-holeNum-1067: String 类型值的隐式强制指令的目标是非相关类型 mx.controls:Text。2、错误原因将字符串类型赋值给Text类型3、解决的方法 阅读全文
posted @ 2015-12-27 09:33 zfyouxi 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 在做我们自己的APP的时候。为了让APP看起来更加的好看,我们就须要将我们的自己的View做成圆角的,毕竟主流也是将非常多东西做成圆角。和苹果的外观看起来差点儿相同,看起来也还不错。要将一个View做成圆角的也非常easy。仅仅须要建立一个自己定义的Drawable就能够了。我们在res/drawa... 阅读全文
posted @ 2015-12-27 08:54 zfyouxi 阅读(190) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1849 简单的尼姆博弈: 代码例如以下:#include #include using namespace std;int main(){ int m,n,t; while(cin>>m... 阅读全文
posted @ 2015-12-27 08:09 zfyouxi 阅读(167) 评论(0) 推荐(0) 编辑