码迷,mamicode.com
首页 > 其他好文 > 日排行
惊天发现之"c#中的Main函数不能调同一个类中的非静态方法"
这是什么原因呢?求大神指点!...
分类:其他好文   时间:2014-05-15 06:20:27    阅读次数:182
Hive常用命令
创建表: hive> CREATE TABLE pokes (foo INT, bar STRING);          Creates a table called pokes with two columns, the first being an integer and the other a string 创建一个新表,结构与其他一样 hive> create table n...
分类:其他好文   时间:2014-05-15 07:07:58    阅读次数:303
[记忆化搜索] zoj 3681 E - Cup 2
题目链接: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3681 E - Cup 2 Time Limit: 2 Seconds      Memory Limit: 65536 KB The European Cup final is coming. The past two World C...
分类:其他好文   时间:2014-05-15 14:56:27    阅读次数:393
LeetCode-004 Add Two Numbers
【题目】 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. Input: (2 -> 4 -> 3) + (5 -> 6 -> 4) Out...
分类:其他好文   时间:2014-05-15 05:13:49    阅读次数:306
VBA从字符串中取出数据信息的函数
作者:iamlaosong 一个简单的函数,从包含有数字信息的字符串中取出这个数据,利用VAL函数将字符串转换为数值,该函数或略数字字符串后面的字母和汉字信息,所以,只要把数字前面的字母和汉字信息去掉就行了。  '函数,从字符串“ABC123456.78DEF”中取出数据 Function mydata(mystring As String) As Double     Dim...
分类:其他好文   时间:2014-05-15 11:16:23    阅读次数:448
用minGW编译ffmpeg(供替换opencv中引用的ffmpeg库)
在安装好的opencv目录下找到路径:opencv245\opencv\3rdparty\ffmpeg,此路径下有一个readme.txt文件。 根据此文件中的步骤采用minGW对ffmpeg进行编译,详细介绍请见该文章。...
分类:其他好文   时间:2014-05-15 03:27:35    阅读次数:325
ZOJ 3640 Help Me Escape
OJ题目:click here~~ 题目分析:有n条路径逃出洞穴,第i条路径有一个难度值ci。某人开始有战斗值f,每天随机选择某一条路径想要逃出。只要此时的 f 大于所选路径的ci,就能花费ti的天数逃出。这里。否则,等待明天再试吧,但是战斗值能增加ci。求逃出的期望天数。 设dp[ i ] 为战斗值为i时,逃出的期望天数。详细解释见代码。 AC_CODE int const maxn =...
分类:其他好文   时间:2014-05-15 06:38:40    阅读次数:406
cocos2dx--vs2012+lua开发环境搭建
cocos2dx--vs2012+lua开发环境搭建...
分类:其他好文   时间:2014-05-15 15:16:28    阅读次数:324
【Unity3D游戏开发】—— PlayerPrefs类实现本地持久化数据存储
在很多游戏中都会有“存储进度”,“读取进度”等菜单,或者当我们进入下一个场景时有些数据需要带入下一个场景。这就需要数据储存。Unity中提供了一个用于本地持久化保存于读取数据的类——PlayerPrefs。 它是以键值对的形式将数据保存在文件中。 下面来看看PlayerPrefs的简单用法。、 //得到存储的数据 Grade = PlayerPref...
分类:其他好文   时间:2014-05-14 14:21:51    阅读次数:311
leetcode题目:Palindrome Partitioning 和Palindrome Partitioning II
题目一: Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For example, given s = "aab", Return [ ...
分类:其他好文   时间:2014-05-14 15:10:01    阅读次数:293
【LeetCode】Search a 2D Matrix
题目 Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted from left to right.The first integer...
分类:其他好文   时间:2014-05-15 03:41:11    阅读次数:257
Leetcode 树 Binary Tree Preorder Traversal
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie Binary Tree Preorder Traversal  Total Accepted: 17948 Total Submissions: 51578 Given a binary tree, return the preorder tra...
分类:其他好文   时间:2014-05-15 04:37:26    阅读次数:283
[2014.5.13][Ubuntu] Ubuntu 14.04STL 出现NTFS分区无法访问的问题
UBUNTU 与 NTFS 互访产生错误...
分类:其他好文   时间:2014-05-15 04:03:29    阅读次数:326
Leetcode 树 Binary Tree Inorder Traversal
题意:中序遍历 思路:采用递归实现。因为函数声明是返回一个vector,所以每个子树返回的是该子树的中序遍历的结果 按照 左、根、右的次序把根和左右子树的vector合并起来就可以了...
分类:其他好文   时间:2014-05-15 06:21:09    阅读次数:255
动态申请 二维数组 以及初始化、 赋值
动态分配数组 初始化...
分类:其他好文   时间:2014-05-15 04:04:14    阅读次数:245
Custom Ribbon in SharePoint 2010 & which not wrok when migrate from 2010 to 2013
Custom Ribbon in SharePoint 2010 & which not wrok when migrate from 2010 to 2013...
分类:其他好文   时间:2014-05-14 15:11:03    阅读次数:297
Leetcode 线性表 Linked List Cycle
题意:判断一个链表中是否有环 思路:快慢指针,如果有环,最终快慢指针会在非NULL相遇 注:用到fast->next前先要确保fast非NULL,要用fast->next->next前先要确保fast,fast->next非NULL 复杂度:时间O(n), 空间O(1) 相关题目:Linked List CycleII...
分类:其他好文   时间:2014-05-15 07:01:57    阅读次数:219
Call back function implement
Call back function easily implement     #include void HelloWorld(int nIndex) { printf("%d person say Hello World\n",nIndex); } void MyName(int len) { printf...
分类:其他好文   时间:2014-05-15 04:21:05    阅读次数:270
初识缓存以及ehcache初体验
初识缓存以及ehcache初体验...
分类:其他好文   时间:2014-05-15 06:15:47    阅读次数:281
天天写日记争当文艺青年 2014-5-13
学校的一些检查貌似要和这边的外包项目冲突了,比较纠结,按这个情况下去这个项目2周肯定解决不了。>__ 360那边2周后也有比赛,报了一下名,有时间就去。 freebuf非常仗义的给我发了一个ipad mini,给领导大大跪了,以后好好翻译文章。 准备上手一下kail,用windows用的我蛋疼了,而且看起来也没有linux专业。 希望这个月能平安度过,最好能入手一个不错的本子。 阿弥陀佛...
分类:其他好文   时间:2014-05-15 03:28:18    阅读次数:239
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!