摘要:
import java.util.Scanner;public class zhsh_nhh extends Thread{/** * @param args */private int n,start,end;public int q;public int[][] zhshQ=new int[10... 阅读全文
摘要:
--SELECT 列名称 FROM 表名称 WHERE 列 运算符 值--select *from Student where sage<=19 and ssex!='M'--select *from Student where sage<=19 or ssex!='M'--SELECT * FRO... 阅读全文
摘要:
// erg.cpp : 定义控制台应用程序的入口点。//>#include "stdafx.h"#include"omp.h"int n;int q;void dfs(int b[],int k){ int i,j; if(k>n) { #pragma omp atomic q++;//find=... 阅读全文
摘要:
--create Domain stu_name varchar(20)Sp_addtype stu_name 'varchar(20)'create table Student(sno char(10) not null,sname stu_name,sage smallint,ssex char... 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_78fd98af010114jw.html 阅读全文
摘要:
http://blog.chinaunix.net/uid-24219701-id-144070.html 阅读全文
摘要:
http://blog.sina.com.cn/s/blog_6cf509db0100uy5n.html网络流题目集合1:http://blog.csdn.net/shahdza/article/details/77795372:http://blog.sina.com.cn/s/blog_5e51... 阅读全文
摘要:
http://blog.csdn.net/a363514083/article/details/6771629http://qianmacao.blog.163.com/blog/static/203397180201211874526300/http://blog.csdn.net/lanseti... 阅读全文
摘要:
题意;5Ab3bd加上多少个字符可以是字符串为回文串#includeusing namespace std;short dp[5005][5005];char s1[5005],s2[5005];int fmax(int x,int y){ if(x>y) return x; return y;}i... 阅读全文
摘要:
2//两个测试用例2//需要购买两种珠宝100 1//需要购买的珠宝数量与价值100 2//31 101 11100 12低价的珠宝可以被高价的珠宝代替,买每种珠宝都必须多买10件,问最少需要花费多少钱#includeusing namespace std;int dp[111],cunt[111]... 阅读全文