window.onbeforeunload=function(e){ ? return (e||window.event).returnValue=‘确认离开页面?!!‘ }
分类:
其他好文 时间:
2014-07-23 13:57:26
阅读次数:
136
/**
* 判断服务是否后台运行
*
* @param context
* Context
* @param className
* 判断的服务名字
* @return true 在运行 false 不在运行
*/
public static boolean isServiceRun(Context mContext,...
分类:
移动开发 时间:
2014-07-23 13:38:06
阅读次数:
249
#include
char fun(char ch)
{
if(ch>='0'&&ch<='9')
return '9'-(ch-'0');
}
main()
{
char c1,c2;
printf("\nThe result:\n");
c1='2';c2=fun(c1);
printf("c1=%c c2=%c\n",c1,c2);
c1='8';c2=fun(c1);
p...
分类:
其他好文 时间:
2014-07-23 13:29:46
阅读次数:
204
#include
void *fun(char a[])
{
int i;
for(i=0;a[i];i++)
if(a[i]>='a'&&a[i]<='z')
a[i]=a[i]-32;
return (a);
}
main()
{
char a[65];
gets(a);
printf("\n%s\n",fun(a));
}...
分类:
其他好文 时间:
2014-07-23 13:28:16
阅读次数:
193
解题思路:
简单题,求解 C(n+m, m) .
代码:
#include
#include
using namespace std;
long long c(long long n,long long m)
{
long long ans=1;
for(int i=1;i<=m;i++)
ans=ans*(n--)/i;
return ans;...
分类:
其他好文 时间:
2014-07-23 13:18:27
阅读次数:
234
面向对象编程概述
继承(Inheritance)
class Quote
{
public:
Quote(){cout<<"Quote的构造函数!"<<endl;}
string isbn() const {cout<<"Quote的isbn()调用!"<<endl; string s="Quote,isbn"; return s;}
virtual double ...
分类:
编程语言 时间:
2014-07-23 13:18:16
阅读次数:
314
//注意将价格转化为整数即可
# include
# include
# include
using namespace std;
int max(int a,int b)
{
return a>b?a:b;
}
int dp[3000050];
int main()
{
int n,i,j,flag,l,m;
int suma,sumb,sumc,sum;
double q,...
分类:
其他好文 时间:
2014-07-23 13:15:36
阅读次数:
177
在C++中cout的输出流当中,有一些问题很容易出错,就比如下面这道简单程序,看似简单,但却是一个值得深思的问题~~
#include
using namespace std;
int foo(int &x)
{
cout
return ++x;
}
int main()
{
int i = 1;...
分类:
其他好文 时间:
2014-07-23 13:04:36
阅读次数:
231
参考算法导论9.2
R_Select(int *a,int p,int r,int i){
if(p==r)
return a[p];
int q=partition(a,p,r);
int k=q-p;
if(i==k)
return a[q];
else if(i<k)
return R_Select(a...
分类:
其他好文 时间:
2014-07-23 13:04:06
阅读次数:
205
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.题解:所谓的anagrams,只若干个词,它们包含的字母的个数和种类完全一...
分类:
其他好文 时间:
2014-07-23 12:55:06
阅读次数:
167