#include
#include
#include
using namespace std;
class Solution {
public:
int compareVersion(string version1, string version2) {
vector v1;
vector v2;
int p=0;
/*方法一:OK*/
/*for(int i=0...
分类:
其他好文 时间:
2015-02-06 09:37:11
阅读次数:
90
Problem Description
How far can you make a stack of cards overhang a table? If you have one card, you can create a maximum overhang of half a card length. (We're assuming that the cards must be per...
分类:
其他好文 时间:
2015-02-06 09:36:23
阅读次数:
130
Problem Description
As we know, Big Number is always troublesome. But it's really important in our ACM. And today, your task is to write a program to calculate A mod B.
To make the problem easie...
分类:
其他好文 时间:
2015-02-06 09:34:56
阅读次数:
132
Problem 2155 盟国
Accept: 140 Submit: 464
Time Limit: 5000 mSec Memory Limit : 32768 KB
Problem Description
世界上存在着N个国家,简单起见,编号从0~N-1,假如a国和b国是盟国,b国和c国是盟国,那么a国和c国也是盟国。另外每个国家都有权宣布退盟(注意,退...
分类:
其他好文 时间:
2015-02-06 09:37:04
阅读次数:
162
Lost Cows
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 9477
Accepted: 6110
Description
N (2 <= N <= 8,000) cows have unique brands in the range 1..N. In...
分类:
编程语言 时间:
2015-02-06 09:36:34
阅读次数:
125
在之前的Web Components系列文章中,简单介绍了Web Components概要,HTML
Templates,Shadow DOM,Shadow DOM(二)。
本文将在此基础上,介绍Shadow DOM与HTML Templates如何一起协作。
在Shadow DOM(二)中,介绍了如何创建Shadow DOM:通过调用createShadowRoot()方法创建root节...
分类:
Web程序 时间:
2015-02-06 09:36:18
阅读次数:
192
设计模式是个好动西,今天先简单说说工厂模式的作用,后续会把这次API开发中使用的东西一点点写出来。算是一次总结吧。...
服务器端的TCP
class ServiceSocket extends Thread{
public void run(){
ServerSocket serversocket=null;
try {
serversocket =new ServerSocket(7980);
Socket socket= serversocket.accept();
...
分类:
移动开发 时间:
2015-02-06 09:36:27
阅读次数:
172
1039. Anniversary Party
Time limit: 0.5 second
Memory limit: 8 MB
Background
The president of the Ural State University is going to make an 80'th Anniversary party. The university has a hierarch...
分类:
其他好文 时间:
2015-02-06 09:34:06
阅读次数:
116
取数游戏
CH Round #61 - 「Adera 10」冬令营热身赛
描述
SJY和CYF在玩一个取数游戏。他们将1~n分别写在n张纸上,随机排成一排,约定SJY先取,只能取走最边上的两张纸之一,然后CYF取;以此循环下去,取到1的人获胜。假设SJY和CYF足够聪明,求SJY获胜的概率。
输入
一个整数n
输出
SJY获胜的...
分类:
其他好文 时间:
2015-02-06 09:34:04
阅读次数:
150
项目教学法实际上就是先由学生或教师在现实中选取一个项目,学生分组对项目进行讨论、写计划书、实施项目、演示项目结果,由学生阐述机理,最后由教师对学生的项目结果进行评估.项目教学法可以调动学生学习的兴趣,提高动手能力和协作精神.
项目教学法在教学理念上强调以学生为本,师生共创学习环境; 在教学目的上注重培养学生的综合素质; 在教学框架上重视以课本为基点,以项目为延伸,以学生独立完成项目为学习方式...
分类:
其他好文 时间:
2015-02-06 09:35:49
阅读次数:
168
Problem 2159 WuYou
Accept: 78 Submit: 405
Time Limit: 1000 mSec Memory Limit : 32768 KB
Problem Description
有两个正整数A和B,这两个数的位数相同且不含前缀0。A的一些位不能够确定,用‘?’代替。已知A是满足 A
Input
第一行一个整...
分类:
其他好文 时间:
2015-02-06 09:34:59
阅读次数:
207
//节点类
package com.huowolf.test2;
public class Node {
private int keyData; //关键字
private int otherData; //其他数据
private Node leftNode; //左子节点
private Node rightNode; //右子节点
public...
分类:
编程语言 时间:
2015-02-06 09:33:53
阅读次数:
206
Problem Description
Eddy's company publishes a kind of lottery.This set of lottery which are numbered 1 to n, and a set of one of each is required for a prize .With one number per lottery, how many...
分类:
其他好文 时间:
2015-02-06 09:35:12
阅读次数:
140
1:Using A makes it possible to do B
A and B are both nouns,and you can trade them for any noun you want.
For example, using a telescope makes it posiible to see things that are far away in the uni...
分类:
其他好文 时间:
2015-02-06 09:34:41
阅读次数:
159