STL简介
C++ STL (Standard Template Library标准模板库) 是通用类模板和算法的集合,它提供给程序员一些标准的数据结构的实现如 queues(队列), lists(链表), 和 stacks(栈)等. C++ STL 提供给程序员以下三类数据结构的实现: 标准容器类 顺序性容器 vector 从后面快速的插入与删除,直接访问任何元素 deque 从...
分类:
其他 时间:
2014-08-12 22:08:44
收藏:
0 评论:
0 赞:
0 阅读:
527
许多学习嵌入式的进入MTK开发平台,很多东西都会感到很陌生。在MTK平台上你可以简简单单几分钟就点亮一块屏。加上MTK快速开发的节奏,也很少有时间自己整理学习。如果不思进取,不加班加点学习。很容易就慢慢……。这也难怪有些人说MTK造就了一批懒人,毁掉了一批工程师。但其实都是基于linux开发,核心的东西都是一样一样的。我刚入行业,在迷茫之际,自己整理跟踪源码。想慢慢找回自己熟悉的感觉,掌握MTK的...
分类:
其他 时间:
2014-08-12 22:08:34
收藏:
0 评论:
0 赞:
0 阅读:
547
C - Picture
Time Limit:2000MS Memory Limit:10000KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
A number of rectangular posters, photographs and other pictures of ...
分类:
其他 时间:
2014-08-12 22:08:14
收藏:
0 评论:
0 赞:
0 阅读:
579
1.设置section的数目,即是你有多少个cell
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 3; // in your case, there are 3 cells
}
2.对于每个section返回一个cell
- (NSInteger)tableView:(UI...
分类:
移动平台 时间:
2014-08-12 22:08:04
收藏:
0 评论:
0 赞:
0 阅读:
619
class Int
{
friend ostream& operator<>(istream& is, Int& i);
friend bool operator<(const Int& a, const Int& b);
private:
int value;
public:
...
分类:
其他 时间:
2014-08-12 22:07:54
收藏:
0 评论:
0 赞:
0 阅读:
414
题目链接
题意:给定一个整数n,求∑f(i, j)(1
思路:依题意,我们可以得到一个递推式ans[n] = ans[n - 1] + ∑f(n, j)(1
对于∑f(n, j)而言,我们用aj(1 <= j <= n)表示gcd(n/k, j/k)所能取到的值的集合,那么可以得到∑f(n, j) = (n * 1 / a1 + n * 2 / a2 + ... + ...
分类:
其他 时间:
2014-08-12 22:07:34
收藏:
0 评论:
0 赞:
0 阅读:
382
Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 16314 Accepted Submission(s): 5926
Problem Description
Angel was caught b...
分类:
其他 时间:
2014-08-12 22:07:24
收藏:
0 评论:
0 赞:
0 阅读:
508
第一部分:宣传片制作
刚刚观看了一个ROLEX手表的宣传片,感觉很棒,整个视频制作运用了很多技巧,使得观众的接受度应该会非常高,总结如下。
题目为《一个好的产品介绍需要哪些要素?》
一、精美的画面
该宣传片的每一帧画面都非常精美,让人赏心悦目,即使知道是在看广告,也有兴趣把它看完,看广告也成了享受。
二、多焦点
在这份宣传片中,不知一次的出现一个画面中拥有多个焦点的情况...
分类:
其他 时间:
2014-08-12 22:07:04
收藏:
0 评论:
0 赞:
0 阅读:
279
indent是linux下一个能力极强的代码整理软件,使用他,可以轻松的写出代码风格十分精良的代码。
但是indent的参数太多,使用起来不是很容易,怎么办呢?
查看
/usr/src/linux-headers-/scripts/Lindent
文件 ,可以看到一行代码:
indent -npro -kr -i8 -ts8 -sob -l80...
分类:
编程语言 时间:
2014-08-12 22:06:54
收藏:
0 评论:
0 赞:
0 阅读:
518
ac_automatic 指针...
分类:
其他 时间:
2014-08-12 22:06:44
收藏:
0 评论:
0 赞:
0 阅读:
310
解题报告
题意:
求矩形周长和。
思路:
左扫上扫,扫过了。
#include
#include
#include
#include
#include
using namespace std;
struct Seg {
int lx,rx,ly,ry,h,v;
friend bool operator < (Seg a,Seg b)
{
...
分类:
其他 时间:
2014-08-12 22:06:34
收藏:
0 评论:
0 赞:
0 阅读:
530
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2089
思路:用变量记录吉利数,和最高位为2的吉利数还有不是吉利数的个数。。。
code:
#include
#include
#include
using namespace std;
int dp[10][3]; //dp[i][j] ,i表示位数,j表示状态//dp[i...
分类:
其他 时间:
2014-08-12 22:06:24
收藏:
0 评论:
0 赞:
0 阅读:
547
opengl实现宽点画线。...
分类:
其他 时间:
2014-08-12 22:06:14
收藏:
0 评论:
0 赞:
0 阅读:
451
Problem Description
FSF has programmed a game.
In this game, players need to divide a rectangle into several same squares.
The length and width of rectangles are integer, and of course the side len...
分类:
其他 时间:
2014-08-12 22:06:04
收藏:
0 评论:
0 赞:
0 阅读:
421
C++引入了ostringstream、istringstream、stringstream这三个类,要使用他们创建对象就必须包含sstream.h头文件。
istringstream类用于执行C++风格的串流的输入操作。
ostringstream类用于执行C风格的串流的输出操作。
strstream类同时可以支持C风格的串流的输入输出操作。
istringstre...
分类:
编程语言 时间:
2014-08-12 22:05:54
收藏:
0 评论:
0 赞:
0 阅读:
491
opencv对图像进行边缘及角点检测
先看结果:
代码:
// ConsoleApplication1_812.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "opencv2/opencv.hpp"
class Imagedetector{
...
分类:
其他 时间:
2014-08-12 22:05:44
收藏:
0 评论:
0 赞:
0 阅读:
623
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3555
题目大意:就是给你一个数n,判断从0到n有多少个数含有数字49.。。。。。
是不是觉得跟hdu2089很相似呀。。。
思路:跟hdu2089一样的,注意给出的数比较大,所以这儿用__int64 。。。。
code:
#include
#incl...
分类:
其他 时间:
2014-08-12 22:05:34
收藏:
0 评论:
0 赞:
0 阅读:
386
职责链模式(Chain of Responsibility):使多个对象都有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系。将这个对象连成一条链,并沿着该条链传递该请求,直到有一个对象处理它为止。
(1),当客户提交一个请求时,请求时沿着链传递直到有一个 ConcreteHandler 对象负责处理它。
(2),接收者和发送者都没有对方的明确信息,切链中的对象自己也不知道链的...
分类:
编程语言 时间:
2014-08-12 22:05:24
收藏:
0 评论:
0 赞:
0 阅读:
474
xheditor的环境搭建请参考xxx ,这时我们打开图片功能 是没有上传按钮的...
分类:
其他 时间:
2014-08-12 22:05:14
收藏:
0 评论:
0 赞:
0 阅读:
426
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
...
分类:
其他 时间:
2014-08-12 22:04:54
收藏:
0 评论:
0 赞:
0 阅读:
516