题目题意: 有n个不同的数,你可以询问a,b哪个大,会得到答案,然后问最少要几次保证能挑选出最大和第二大的数。 分析: n个数,先以打擂台的方式,两两比较出最大的,n - 1次,然后在由被最大PK下去的数字中,比较出最大的,有log(n)个数,需要进行log(n) - 1次,注意是向上取整。#in....
分类:
其他好文 时间:
2015-03-17 17:51:24
阅读次数:
206
排序。。就是数据有点坑爹。。#include#include#include#includeusing namespace std;struct sbjjq{ int z,x,c,v,b,q;}a[100005],r;int n,t,i,m;bool pd(sbjjq x,sbjjq y){r...
分类:
其他好文 时间:
2015-03-16 21:10:58
阅读次数:
162
linux虚拟机在vmwareworkstation上复制后,网卡使用手工配置后总是从net8上自动获得地址,无法完成自己配置的地址[root@cell1~]#ifconfigeth0Linkencap:EthernetHWaddr00:0C:29:5C:5C:4Ainetaddr:192.168.83.134Bcast:192.168.83.255Mask:255.255.255.0UPBROADCASTRUNNINGMULTI..
分类:
系统相关 时间:
2015-03-16 19:36:18
阅读次数:
171
本文转自:http://www.asp.net/mvc/overview/older-versions/getting-started-with-ef-5-using-mvc-4/sorting-filtering-and-paging-with-the-entity-framework-in-an...
分类:
移动开发 时间:
2015-03-16 19:02:25
阅读次数:
166
安装 EPEL 源EPEL 是 Extra Packages for Enterprise Linux 的缩写(EPEL),是用于 Fedora-based Red Hat Enterprise Linux (RHEL) 的一个高质量软件源,所以同时也适用于 CentOS 或者 Scientific...
分类:
其他好文 时间:
2015-03-16 19:01:43
阅读次数:
145
Red Hat Enterprise Linux 6.6的安装首界面有五个选项,这跟以前的Red Hat Enterprise Linux 5.x的安装界面是有一些区别的。 安装或者升级现有系统(Install or upgrade an existing system) 这个选项是默认的。选择这个...
分类:
系统相关 时间:
2015-03-16 16:21:56
阅读次数:
184
1.二叉排序树的定义 二叉排序树(Binary Sorting Tree)的定义如下: 二叉树或者是一棵空树,或者是一棵具有以下性质的二叉树: (1)若它有左子树,则左子树上所有结点的数据均小于根结点的数据。 (2)若它有右子树,则右子树上所有结点的数据均大于根结点的数据。 (3)左、右子...
分类:
编程语言 时间:
2015-03-16 12:33:54
阅读次数:
171
三种情况分别是:1. 在某位置可以确定拓扑排序。2. 在某位置出现了环3. 到最后都不能确定拓扑排序(某一位置入度为0的点有多个),可以续输入执行下去。每输入一组数据都要做一次判断 1 #include 2 #include 3 #include 4 #include 5 using namespa...
分类:
编程语言 时间:
2015-03-15 16:50:57
阅读次数:
223
Red Hat Enterprise Linux 7 Release/Update General Availability Date redhat-release Errata Date* Kernel Version RHEL 7 Update 2 TBA TBA TBA RHEL 7 Upda...
分类:
系统相关 时间:
2015-03-15 00:27:33
阅读次数:
419
Problem Description
A hat’s word is a word in the dictionary that is the concatenation of exactly two other words in the dictionary.
You are to find all the hat’s words in a dictionary.
Input
Standard input consists of a number of lowercase words, one p...
分类:
其他好文 时间:
2015-03-14 18:42:53
阅读次数:
141