上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: 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... 阅读全文
posted @ 2014-11-21 10:01 _一千零一夜 阅读(127) 评论(0) 推荐(0) 编辑
摘要: --SELECT 列名称 FROM 表名称 WHERE 列 运算符 值--select *from Student where sage<=19 and ssex!='M'--select *from Student where sage<=19 or ssex!='M'--SELECT * FRO... 阅读全文
posted @ 2014-10-30 17:22 _一千零一夜 阅读(138) 评论(0) 推荐(0) 编辑
摘要: // 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=... 阅读全文
posted @ 2014-10-27 11:28 _一千零一夜 阅读(156) 评论(0) 推荐(0) 编辑
摘要: --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... 阅读全文
posted @ 2014-10-23 17:00 _一千零一夜 阅读(299) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_78fd98af010114jw.html 阅读全文
posted @ 2014-08-08 09:39 _一千零一夜 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://blog.chinaunix.net/uid-24219701-id-144070.html 阅读全文
posted @ 2014-07-21 10:26 _一千零一夜 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2014-07-21 09:54 _一千零一夜 阅读(229) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/a363514083/article/details/6771629http://qianmacao.blog.163.com/blog/static/203397180201211874526300/http://blog.csdn.net/lanseti... 阅读全文
posted @ 2014-07-20 20:19 _一千零一夜 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 题意;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... 阅读全文
posted @ 2014-07-15 16:14 _一千零一夜 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 2//两个测试用例2//需要购买两种珠宝100 1//需要购买的珠宝数量与价值100 2//31 101 11100 12低价的珠宝可以被高价的珠宝代替,买每种珠宝都必须多买10件,问最少需要花费多少钱#includeusing namespace std;int dp[111],cunt[111]... 阅读全文
posted @ 2014-07-15 16:13 _一千零一夜 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页