PAT (Basic Level) Practise (中文)
分类:
其他好文 时间:
2014-09-01 21:01:43
阅读次数:
189
PAT (Basic Level) Practise (中文)
分类:
其他好文 时间:
2014-09-01 20:54:43
阅读次数:
201
1.选择器:jQuery 属性选择器jQuery 使用 XPath 表达式来选择带有给定属性的元素。$("[href]") 选取所有带有 href 属性的元素。$("[href='#']") 选取所有带有 href 值等于 "#" 的元素。$("[href!='#']") 选取所有带有 href 值...
分类:
Web程序 时间:
2014-09-01 17:36:33
阅读次数:
190
A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.InputEach input file contains ...
分类:
其他好文 时间:
2014-08-31 22:46:42
阅读次数:
354
这题目最坑了,我做的A题最坑的一道1,首先输入数据不一定是四位的,泪奔,输入1,222,222,试一试2,在运行过程中需要判定结果是否为0,需要跳出#include#include#includeusing namespace std;void get(char * data,int & max,i...
分类:
其他好文 时间:
2014-08-31 19:57:51
阅读次数:
240
WHICH(1) General Commands Manual WHICH(1)NAME which - locate a command#就是用来找一个命令的绝对路径SYNOPSIS which [-a] filename ...DESCRIPTION which returns the pat...
分类:
系统相关 时间:
2014-08-30 21:37:50
阅读次数:
482
#include#include#include#define MAX 1000int main(){ char str[MAX]; char exp[MAX]; char data_sym; char comp_sym; while(scanf("%s",str)!=...
分类:
其他好文 时间:
2014-08-30 21:34:19
阅读次数:
240
#include
#include
#include
#include
#include
#include
using namespace std;
#define Max(x,y) ((x)>(y)?(x):(y))
#define ABS(x) ((x)>0?(x):-(x))
struct Node{
Node* l,*r;
int val,h;
Node(int x){
l=r=...
分类:
其他好文 时间:
2014-08-29 18:25:38
阅读次数:
210
PAT (Basic Level) Practise (中文)
分类:
其他好文 时间:
2014-08-29 17:54:10
阅读次数:
178
PAT (Basic Level) Practise (中文)
分类:
其他好文 时间:
2014-08-28 11:17:39
阅读次数:
193