- 对Uva 10420 - List of Conquests的文化补充
kirsi0
其他文化
“Thisisthelistofthebeautiesmymasterhasloved,alistI’vemadeoutmyself:takealook,readitwithme.InItalysixhundredandforty,inGermanytwohundredandthirty-one,ahundredinFrance,ninety-oneinTurkey;butinSpainalrea
- UVA 10420 (暑假-排序、检索 -B - List of Conquests)
冰阔落
排序与检索ACM刷题录
#include#include//#include#includeusingnamespacestd;intstrcompare(constvoid*_a,constvoid*_b){char*a=(char*)_a;char*b=(char*)_b;returnstrcmp(a,b);}intmain(){constintMax=1050;intn;while(scanf("%d",&n)!=
- STL-List of Conquests
Gitfan
DescriptionInActI,LeporelloistellingDonnaElviraabouthismaster’slonglistofconquests:“Thisisthelistofthebeautiesmymasterhasloved,alistI’vemadeoutmyself:takealook,readitwithme.InItalysixhundredandforty,i
- UVA-10420 List of Conquests
qq_32036091
listcoofUVA-10420
分析:神器的简单应用#include
#include
#include
#include
#include
#include
usingnamespacestd;
intmain()
{
charstr[80],s[80];
intn;
mapm;
scanf("%d",&n);
while(n--)
{
scanf("%s",s);
gets(str);
m[s]++;
}
map::iter
- UVA 10420 - List of Conquests
list
继续跟着白书做,这道题是要找每个国家的人的数量,然后按国家的字典序输出,很水的
一道题,但是因为少了个getchar()浪费了不少时间。
#include<stdio.h>#include<string.h>#include<stdlib.h>char ct[2005][80], s[80];int cmp( const void *_p, const v
- UVA10420 List of Conquests
list
http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=1361
题不难 我交了八次。。 刚开始以为还要判断一个国家会不会重复妇女的名字 写的复杂了 一直runtime 看了下别人的代码 知道不用判断 删去了
- [算法练习] UVA 10420 - List of Conquests?
list
UVA Online Judge 题目10420 - List of Conquests 问题描述:
题目很简单,给出一个出席宴会的人员列表,包括国籍和姓名(姓名完全没用)。统计每个国家有多少人参加,按国家名字典排序输出。 输入格式:
第一行是一个整数n,表示参加人数的个数。接下来是n行,每行第一个单词为国家名称,后面为姓名。 输出格式:
每行包括国家名称和出席人数,将国家名称按
- UVa 10420 List of Conquests
list
题意就是有N个pl妹子,然后每行第一个单词是妹子的国籍,后面是妹子的名字。
你的任务就是统计相同国籍妹子的个数,然后按字母表顺序输出。
我首先把所有的国籍都读入,然后用qsort()按字母表顺序排序。
List of ConquestsInput: standard inputOutput: standard outputTime Limi
- UVA - 10420 - List of Conquests (排序 - qsort、STL)
u014355480
排序ACMuva
UVA-10420ListofConquestsTimeLimit: 3000MSMemoryLimit: Unknown64bitIOFormat: %lld&%lluSubmit StatusDescriptionProblemBListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInActI,
- UVA 10420 List of Conquests
HelloWorld10086
listuvaofConquests
B-ListofConquestsTimeLimit:3000MS MemoryLimit:0KB 64bitIOFormat:%lld&%lluDescriptionInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterha
- UVA 10420 (暑假-排序、检索 -B - List of Conquests)
kl28978113
#include
#include
//#include
#include
usingnamespacestd;
intstrcompare(constvoid*_a,constvoid*_b)
{
char*a=(char*)_a;
char*b=(char*)_b;
returnstrcmp(a,b);
}
intmain(){
constintMax=1050;
intn;
while(
- uva 10420 - List of Conquests
jdflyfly
题目地址:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=98&problem=1361&mosmsg=Submission+received+with+ID+11590304 题目比较简单,只需统计国家名,人名不用care。分别用java和c写了下,都A
- UVa 10420 - List of Conquests
u014247806
ACMuva10420
Sorting/Searching类的题目.总体挺简单.题目要求统计每个国家出现的次数.一开始我以为国家就是题目开头的五个..边写边纳闷..怎么那么简单...后来看到输出中有个上面没有的England.....╮(╯▽╰)╭我的思路是把国家放到一个二维数组word里(话说这招屡试不爽啊..),再开一个数组num,存放国家的数目.另外开一个数组temp,读取每句话中的国家,并和word里的国家对比.
- UVa 10420 - List of Conquests
fobdddf
题目链接:UVa10420-ListofConquests排序问题,题目本身不难,注意一些东西。sort的cmp返回值只有两个,0或者1,分别表示小于和大于。qsort的返回值有三个,-1或者0或者1,分别表示小于,等于,大于,稳定的。所以在sort的cmp中写 returnstrcmp(_a,_b);肯定是错的,因为strcmp的返回值有三个,用qsort是可以的。#include
#inclu
- 10420 - List of Conquests
u012997373
题目:10420-ListofConquests题目大意:计算有多少个女人属于同一个国家,输出按字典序。解题思路:只需将国家名保存就可以了,之后重小到大排列,再统计重复的国家的个数,最后按顺序输出每一个不同的国家名,并给出个数。#include
#include
#include
usingnamespacestd;
constintN=80;
constintL=2005;
intt;
st
- UVa 10420 List of Conquests (STL map)
synapse7
C++mapACMuva
10420-ListofConquestsTimelimit:3.000secondshttp://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=98&page=show_problem&problem=1361InActI,LeporelloistellingDonnaElviraabouthisma
- UVA10420-List of Conquests
u011345461
思路:只需比较前面国家的名称就行了,记得要排序完再进行下一步操作,这样比较方便!!!!!#include
#include
#include
usingnamespacestd;
charcname[2005][80];
charpname[2005][80];
intcompare(constvoid*a,constvoid*b){
returnstrcmp((char*)a,(char*)
- uva 10420 List of Conquests(检索+排序)
u011328934
ListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterhasloved,alistI'
- 10420 - List of Conquests(UPDATE)
sailtseng
listuvaof10420Conquests
在 10420-ListofConquests的解法中,最后输出时为了保证国家名是字典序从小到大,把map的key都拷贝到vector里来进行排序;后来发现map的key默认就是按字典序从小到大的,所以那段代码是多此一举;新代码实现如下:代码:#include
#include
#include
#include
#include
#include
#include
#include
- 10420 - List of Conquests
sailtseng
listuvaof10420Conquests
题意:输入一组字符串,每行的第一个单词表示国家名,统计各个国家名出现次数,然后按国家名的字母序由小到大进行输出.思路:对存放在map里,每读入一行,就取到国家名,然后在map里递增一下;最后把国家名进行排序,按从小到大进行输出.要点:使用 sort(countries.begin(),countries.end(),less()); 进行从小到大排序.题目:http://uva.onlinejud
- 排序/查找 10420 - List of Conquests
SIOFive
UVaOJRoot :: AOAPCI:BeginningAlgorithmContests(RujiaLiu) :: Volume1.ElementaryProblemSolving :: Sorting/SearchingProblemBListofConquestsInput: standardinputOutput: standardoutputTimeLimit: 2secondsInA
- uva 10420 - List of Conquests
249326109
list
题目地址:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=98&problem=1361&mosmsg=Submission+received+with+ID+11590304
题目比较简单,只需统
- UVA 10420 - List of Conquests
zcube
字符串排序
字符串排序。#include
#include
#include
intcmp(constvoid*a,constvoid*b){
char*_a=(char*)a;
char*_b=(char*)b;
returnstrcmp(_a,_b);
}
intmain(){
charstr[2005][80];
intn;
scanf("%d",&n
- UVaOJ 10420 - List of Conquests
Ra_WinDing
AOAPCI: BeginningAlgorithmContests(RujiaLiu) :: Volume1.ElementaryProblemSolving ::Sorting/SearchingDescription某个大BOSS的情人遍布世界各地。因此他有个情人表,表的每项以国家名开头,之后是情人名。给你这张表,要求统计他在各国情人的数量。TypeSorting/SearchingAnal
- uva10420 - List of Conquests
Frankiller
listRESTinputeachoutput
ProblemBListofConquestsInput:standardinputOutput:standardoutputTimeLimit:2secondsInActI,LeporelloistellingDonnaElviraabouthismaster'slonglistofconquests:``Thisisthelistofthebeautiesmymasterhasloved,a
- 10420 - List of Conquests
rowanhaoa
这道题目也不难,就是字符串的查找与排序,用一个结构体就很简单了;#include
#include
structlist
{
charname[2000];
intnumber;
}s[100000],ss;
intnum;
intmain()
{
inti,j,n,T;
charstr[10000],str1[10000];
scanf("%d%*c",&T);
num=0;
while(T--
- uva 10420 List of Conquests
shiqi_614
题意:给你N个串,每个串的第一个单词表示国家,后面的M单词(M>=1)表示女人,要你找出每个国家出现了几个女人。用STL的map将国家映射成数字,然后再放到set里。#include
#include
#include
#include
#include
#include
usingnamespacestd;
intmain()
{
intn,t=0;
charwork1[100],work2[1
- UVa 10420 List of Conquests
心如止水
UVa10420ListofConquests女孩们的名字没有什么用,用map对象记录每个国家出现的次数即可。以下是我的代码:#include#include#include#includeusing namespace std;const int kMaxn(2007);int main(){ /* freopen("data.in","r",stdin); freopen("
- UVa 10420 List of Conquests
ACb0y
/*coder:ACboydate:2010-2-25result:1ACdescription:UVa10420ListofConquests*/#include#include#include#includeusingnamespacestd;structNode{stringcountry;stringwomenName;};Nodenode[2010];intcmp(Nodea,Nodeb
- Maven
Array_06
eclipsejdkmaven
Maven
Maven是基于项目对象模型(POM), 信息来管理项目的构建,报告和文档的软件项目管理工具。
Maven 除了以程序构建能力为特色之外,还提供高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目。由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目发文时使用 Maven,而且公司
- ibatis的queyrForList和queryForMap区别
bijian1013
javaibatis
一.说明
iBatis的返回值参数类型也有种:resultMap与resultClass,这两种类型的选择可以用两句话说明之:
1.当结果集列名和类的属性名完全相对应的时候,则可直接用resultClass直接指定查询结果类
- LeetCode[位运算] - #191 计算汉明权重
Cwind
java位运算LeetCodeAlgorithm题解
原题链接:#191 Number of 1 Bits
要求:
写一个函数,以一个无符号整数为参数,返回其汉明权重。例如,‘11’的二进制表示为'00000000000000000000000000001011', 故函数应当返回3。
汉明权重:指一个字符串中非零字符的个数;对于二进制串,即其中‘1’的个数。
难度:简单
分析:
将十进制参数转换为二进制,然后计算其中1的个数即可。
“
- 浅谈java类与对象
15700786134
java
java是一门面向对象的编程语言,类与对象是其最基本的概念。所谓对象,就是一个个具体的物体,一个人,一台电脑,都是对象。而类,就是对象的一种抽象,是多个对象具有的共性的一种集合,其中包含了属性与方法,就是属于该类的对象所具有的共性。当一个类创建了对象,这个对象就拥有了该类全部的属性,方法。相比于结构化的编程思路,面向对象更适用于人的思维
- linux下双网卡同一个IP
被触发
linux
转自:
http://q2482696735.blog.163.com/blog/static/250606077201569029441/
由于需要一台机器有两个网卡,开始时设置在同一个网段的IP,发现数据总是从一个网卡发出,而另一个网卡上没有数据流动。网上找了下,发现相同的问题不少:
一、
关于双网卡设置同一网段IP然后连接交换机的时候出现的奇怪现象。当时没有怎么思考、以为是生成树
- 安卓按主页键隐藏程序之后无法再次打开
肆无忌惮_
安卓
遇到一个奇怪的问题,当SplashActivity跳转到MainActivity之后,按主页键,再去打开程序,程序没法再打开(闪一下),结束任务再开也是这样,只能卸载了再重装。而且每次在Log里都打印了这句话"进入主程序"。后来发现是必须跳转之后再finish掉SplashActivity
本来代码:
// 销毁这个Activity
fin
- 通过cookie保存并读取用户登录信息实例
知了ing
JavaScripthtml
通过cookie的getCookies()方法可获取所有cookie对象的集合;通过getName()方法可以获取指定的名称的cookie;通过getValue()方法获取到cookie对象的值。另外,将一个cookie对象发送到客户端,使用response对象的addCookie()方法。
下面通过cookie保存并读取用户登录信息的例子加深一下理解。
(1)创建index.jsp文件。在改
- JAVA 对象池
矮蛋蛋
javaObjectPool
原文地址:
http://www.blogjava.net/baoyaer/articles/218460.html
Jakarta对象池
☆为什么使用对象池
恰当地使用对象池化技术,可以有效地减少对象生成和初始化时的消耗,提高系统的运行效率。Jakarta Commons Pool组件提供了一整套用于实现对象池化
- ArrayList根据条件+for循环批量删除的方法
alleni123
java
场景如下:
ArrayList<Obj> list
Obj-> createTime, sid.
现在要根据obj的createTime来进行定期清理。(释放内存)
-------------------------
首先想到的方法就是
for(Obj o:list){
if(o.createTime-currentT>xxx){
- 阿里巴巴“耕地宝”大战各种宝
百合不是茶
平台战略
“耕地保”平台是阿里巴巴和安徽农民共同推出的一个 “首个互联网定制私人农场”,“耕地宝”由阿里巴巴投入一亿 ,主要是用来进行农业方面,将农民手中的散地集中起来 不仅加大农民集体在土地上面的话语权,还增加了土地的流通与 利用率,提高了土地的产量,有利于大规模的产业化的高科技农业的 发展,阿里在农业上的探索将会引起新一轮的产业调整,但是集体化之后农民的个体的话语权 将更少,国家应出台相应的法律法规保护
- Spring注入有继承关系的类(1)
bijian1013
javaspring
一个类一个类的注入
1.AClass类
package com.bijian.spring.test2;
public class AClass {
String a;
String b;
public String getA() {
return a;
}
public void setA(Strin
- 30岁转型期你能否成为成功人士
bijian1013
成功
很多人由于年轻时走了弯路,到了30岁一事无成,这样的例子大有人在。但同样也有一些人,整个职业生涯都发展得很优秀,到了30岁已经成为职场的精英阶层。由于做猎头的原因,我们接触很多30岁左右的经理人,发现他们在职业发展道路上往往有很多致命的问题。在30岁之前,他们的职业生涯表现很优秀,但从30岁到40岁这一段,很多人
- [Velocity三]基于Servlet+Velocity的web应用
bit1129
velocity
什么是VelocityViewServlet
使用org.apache.velocity.tools.view.VelocityViewServlet可以将Velocity集成到基于Servlet的web应用中,以Servlet+Velocity的方式实现web应用
Servlet + Velocity的一般步骤
1.自定义Servlet,实现VelocityViewServl
- 【Kafka十二】关于Kafka是一个Commit Log Service
bit1129
service
Kafka is a distributed, partitioned, replicated commit log service.这里的commit log如何理解?
A message is considered "committed" when all in sync replicas for that partition have applied i
- NGINX + LUA实现复杂的控制
ronin47
lua nginx 控制
安装lua_nginx_module 模块
lua_nginx_module 可以一步步的安装,也可以直接用淘宝的OpenResty
Centos和debian的安装就简单了。。
这里说下freebsd的安装:
fetch http://www.lua.org/ftp/lua-5.1.4.tar.gz
tar zxvf lua-5.1.4.tar.gz
cd lua-5.1.4
ma
- java-14.输入一个已经按升序排序过的数组和一个数字, 在数组中查找两个数,使得它们的和正好是输入的那个数字
bylijinnan
java
public class TwoElementEqualSum {
/**
* 第 14 题:
题目:输入一个已经按升序排序过的数组和一个数字,
在数组中查找两个数,使得它们的和正好是输入的那个数字。
要求时间复杂度是 O(n) 。如果有多对数字的和等于输入的数字,输出任意一对即可。
例如输入数组 1 、 2 、 4 、 7 、 11 、 15 和数字 15 。由于
- Netty源码学习-HttpChunkAggregator-HttpRequestEncoder-HttpResponseDecoder
bylijinnan
javanetty
今天看Netty如何实现一个Http Server
org.jboss.netty.example.http.file.HttpStaticFileServerPipelineFactory:
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast(&quo
- java敏感词过虑-基于多叉树原理
cngolon
违禁词过虑替换违禁词敏感词过虑多叉树
基于多叉树的敏感词、关键词过滤的工具包,用于java中的敏感词过滤
1、工具包自带敏感词词库,第一次调用时读入词库,故第一次调用时间可能较长,在类加载后普通pc机上html过滤5000字在80毫秒左右,纯文本35毫秒左右。
2、如需自定义词库,将jar包考入WEB-INF工程的lib目录,在WEB-INF/classes目录下建一个
utf-8的words.dict文本文件,
- 多线程知识
cuishikuan
多线程
T1,T2,T3三个线程工作顺序,按照T1,T2,T3依次进行
public class T1 implements Runnable{
@Override
 
- spring整合activemq
dalan_123
java spring jms
整合spring和activemq需要搞清楚如下的东东1、ConnectionFactory分: a、spring管理连接到activemq服务器的管理ConnectionFactory也即是所谓产生到jms服务器的链接 b、真正产生到JMS服务器链接的ConnectionFactory还得
- MySQL时间字段究竟使用INT还是DateTime?
dcj3sjt126com
mysql
环境:Windows XPPHP Version 5.2.9MySQL Server 5.1
第一步、创建一个表date_test(非定长、int时间)
CREATE TABLE `test`.`date_test` (`id` INT NOT NULL AUTO_INCREMENT ,`start_time` INT NOT NULL ,`some_content`
- Parcel: unable to marshal value
dcj3sjt126com
marshal
在两个activity直接传递List<xxInfo>时,出现Parcel: unable to marshal value异常。 在MainActivity页面(MainActivity页面向NextActivity页面传递一个List<xxInfo>): Intent intent = new Intent(this, Next
- linux进程的查看上(ps)
eksliang
linux pslinux ps -llinux ps aux
ps:将某个时间点的进程运行情况选取下来
转载请出自出处:http://eksliang.iteye.com/admin/blogs/2119469
http://eksliang.iteye.com
ps 这个命令的man page 不是很好查阅,因为很多不同的Unix都使用这儿ps来查阅进程的状态,为了要符合不同版本的需求,所以这个
- 为什么第三方应用能早于System的app启动
gqdy365
System
Android应用的启动顺序网上有一大堆资料可以查阅了,这里就不细述了,这里不阐述ROM启动还有bootloader,软件启动的大致流程应该是启动kernel -> 运行servicemanager 把一些native的服务用命令启动起来(包括wifi, power, rild, surfaceflinger, mediaserver等等)-> 启动Dalivk中的第一个进程Zygot
- App Framework发送JSONP请求(3)
hw1287789687
jsonp跨域请求发送jsonpajax请求越狱请求
App Framework 中如何发送JSONP请求呢?
使用jsonp,详情请参考:http://json-p.org/
如何发送Ajax请求呢?
(1)登录
/***
* 会员登录
* @param username
* @param password
*/
var user_login=function(username,password){
// aler
- 发福利,整理了一份关于“资源汇总”的汇总
justjavac
资源
觉得有用的话,可以去github关注:https://github.com/justjavac/awesome-awesomeness-zh_CN 通用
free-programming-books-zh_CN 免费的计算机编程类中文书籍
精彩博客集合 hacke2/hacke2.github.io#2
ResumeSample 程序员简历
- 用 Java 技术创建 RESTful Web 服务
macroli
java编程WebREST
转载:http://www.ibm.com/developerworks/cn/web/wa-jaxrs/
JAX-RS (JSR-311) 【 Java API for RESTful Web Services 】是一种 Java™ API,可使 Java Restful 服务的开发变得迅速而轻松。这个 API 提供了一种基于注释的模型来描述分布式资源。注释被用来提供资源的位
- CentOS6.5-x86_64位下oracle11g的安装详细步骤及注意事项
超声波
oraclelinux
前言:
这两天项目要上线了,由我负责往服务器部署整个项目,因此首先要往服务器安装oracle,服务器本身是CentOS6.5的64位系统,安装的数据库版本是11g,在整个的安装过程中碰到很多的坑,不过最后还是通过各种途径解决并成功装上了。转别写篇博客来记录完整的安装过程以及在整个过程中的注意事项。希望对以后那些刚刚接触的菜鸟们能起到一定的帮助作用。
安装过程中可能遇到的问题(注
- HttpClient 4.3 设置keeplive 和 timeout 的方法
supben
httpclient
ConnectionKeepAliveStrategy kaStrategy = new DefaultConnectionKeepAliveStrategy() {
@Override
public long getKeepAliveDuration(HttpResponse response, HttpContext context) {
long keepAlive
- Spring 4.2新特性-@Import注解的升级
wiselyman
spring 4
3.1 @Import
@Import注解在4.2之前只支持导入配置类
在4.2,@Import注解支持导入普通的java类,并将其声明成一个bean
3.2 示例
演示java类
package com.wisely.spring4_2.imp;
public class DemoService {
public void doSomethin