码迷,mamicode.com
首页 > 2015年01月14日 > 全部分享
UVA 10780
UVA 10780 Problem   给两个整数M,N,要求找到最小的正整数K,使得(M^k)可整除(N ! )。输出K,若不存在,输出不存在。 Limits Time Limit(ms): 3000 Memory Limit(MB): No Limit M: [2, 5000] N: [1, 10000] 不超过500个case Solution   分解素...
分类:其他好文   时间:2015-01-14 22:58:44    阅读次数:166
Android开发之自定义圆角矩形进度对话框
方式一:自定义对话框 public class ProgersssDialog extends Dialog { private ImageView img; private TextView txt; public ProgersssDialog(Context context) { super(context, R.styl...
分类:移动开发   时间:2015-01-14 22:59:55    阅读次数:351
hdu 3004 The Chess【广独优先搜索】
The Chess Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 466    Accepted Submission(s): 130 Problem Description Mr Li likes playing ch...
分类:其他好文   时间:2015-01-14 22:58:34    阅读次数:331
poj 2823 单调队列裸题
单调队列...
分类:其他好文   时间:2015-01-14 22:59:02    阅读次数:186
[C++]LeetCode: 95 Binary Tree Preorder Traversal (先序遍历)
题目: Given a binary tree, return the preorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 2 / 3 return [1,2,3]. Note: Recursive...
分类:编程语言   时间:2015-01-14 22:59:13    阅读次数:174
swift与objectc混编 module-Swift.h file not found
大家都知道,swift与objective-c混编时,系统会自动生成一个swift.h文件。不是指那个bridge文件,那个是用来往swift里导入objective-c类的,说的是用来往objective-c里导swift这个。当时在我自己的电脑上运行没有问题,git上传后别人update死活提示XXX-swift.h file not found。大家也知道现在都觉得swift刚出来,是个坑,...
分类:编程语言   时间:2015-01-14 22:59:09    阅读次数:1261
Android默认输入法勾选多国语言,并默认其中一种语言
1.首先在设备上调整输入法 设置>语言输入法>Android键盘(AOSP),在输入语言里勾选要选择的语言,比如选“英语(美国)”和“西班牙文”两种: 2.选择系统输入法的默认语言(默认为两种语言中的“西班牙文”) 打开一个能能调出输入法的应用,下拉通知栏里,“选择输入法”调整为“西班牙文” 3.查看Setting数据库文件 a...
分类:移动开发   时间:2015-01-14 22:58:41    阅读次数:585
define和typedef区别
define和typedef是C/C++里面的两个关键词,但是在使用中我们很容易混淆。实际上这两者是有很大区别的。...
分类:其他好文   时间:2015-01-14 22:59:09    阅读次数:159
NYOJ 懒省事的小明
懒省事的小明 时间限制:3000 ms  |  内存限制:65535 KB 难度:3 描述      小明很想吃果子,正好果园果子熟了。在果园里,小明已经将所有的果子打了下来,而且按果子的不同种类分成了不同的堆。小明决定把所有的果子合成一堆。 因为小明比较懒,为了省力气,小明开始想点子了:   每一次合并,小明可以把两堆果子合并到一起,消耗的体力等于两堆果子的重量之和。...
分类:其他好文   时间:2015-01-14 22:57:30    阅读次数:241
android SDK manager 无法更新
问题:SDK由于中国对谷歌的不友好封锁,导致国内更新缓慢。出现无法更新SDK的问题。 解决方式: 设置options选择另一个镜像: S1 打开 Android SDK Manager,选择 tTools -> Options S2 设置 HTTP Proxy Server: mirrors.neusoft.edu.cn S3 设置 HTTP Proxy Port: 80...
分类:移动开发   时间:2015-01-14 22:57:20    阅读次数:173
【c++程序】复杂抽象结构
#include using namespace std; class Animal { public: Animal(int); virtual ~Animal(){cout<<"析构动物"<<endl;} virtual int GetAge(){return itsage;} virtual void Sleep()=0; virtual void Propagate()=0; ...
分类:编程语言   时间:2015-01-14 22:58:27    阅读次数:257
以前的C\C++开发等学习博客
以前的一些文章,因为CSDN不能修改ID,而我自己想换个ID,所以重新注册了个账号,以前的一些文章有些还是比较有价值的,但是一篇篇拿过来好像挺烦的,在这里自己给自己拉个以前的文章链接,以备查用。 IT05的专栏(http://blog.csdn.net/jiejiaozhufu)...
分类:编程语言   时间:2015-01-14 22:58:44    阅读次数:188
POJ 3692-Kindergarten(二分图_最小顶点集)
Kindergarten Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 5477   Accepted: 2653 Description In a kindergarten, there are a lot of kids. All girls of the...
分类:其他好文   时间:2015-01-14 22:58:05    阅读次数:254
LeetCode--Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? class Solution...
分类:其他好文   时间:2015-01-14 22:57:33    阅读次数:162
leetcode7 Reverse Integer
题目要求,输入一个整型数,输出反转后的数。例如:-123,反转后为-321。应该考虑到输入int型的数反转后超过int最大值的情况。 {CSDN:CODE:580055}...
分类:其他好文   时间:2015-01-14 22:57:23    阅读次数:147
简单的模仿360卫士的手机管家(开源)
仿360手机卫士的Android小应用。...
分类:移动开发   时间:2015-01-14 22:57:34    阅读次数:247
【笔记】javascript原型链继承实例
function Shape(){ this.name = 'shape'; this.toString = function(){ return this.name; } } function TwoDShape(){ this.name = '2D shape'; } function Triangle(side,height){ this.name = 'Triangle';...
分类:编程语言   时间:2015-01-14 22:56:01    阅读次数:285
1452条   上一页 1 2 3 4 5 6 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!