自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 海量数据中找出出现次数最多的前10个URL

#include<iostream>#include<string>#include<map>#include<vector>using namespace std;int main(void){ //海量数据 string a[5]={"ab","b","ccc","ab","ccc"}; int n=sizeof(a)/sizeof(a[0]); cou

2016-09-19 22:34:20 7549

原创 c++读取以逗号为分隔符的一串数字

#include<iostream>#include<vector>#include<sstream>using namespace std;int main(){ string s; vector<int> v; getline(cin, s); istringstream is(s); int inter; char ch; whi

2016-09-17 22:09:00 19680

原创 餐桌问题

题目:有n张桌子,m批人,每张桌子容纳的最大人数为h,每批人的人数为a,预计消费为c,每张桌子坐的人数不能大于h,不能拼桌和分桌,同一张桌子只能容纳同一批人,求怎么样消费是餐馆获利最高。#include <iostream>#include <set>#include <vector>#include <algorithm>using namespace std;struct Person

2016-09-08 23:54:07 823

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除