C++
smallmeow
这个作者很懒,什么都没留下…
展开
-
c++中的sort
// sort algorithm example#include <iostream> // std::cout#include <algorithm> // std::sort#include <vector> // std::vectorbool myfunction (int i,int j) { return (i<j); }struct myclass {转载 2016-08-27 20:37:56 · 320 阅读 · 0 评论 -
c++中的find
// find example#include <iostream> // std::cout#include <algorithm> // std::find#include <vector> // std::vectorint main () { // using std::find with array and pointer: int myints[]原创 2016-08-27 21:01:39 · 320 阅读 · 0 评论 -
C++中的accumulate
// accumulate example#include <iostream> // std::cout#include <functional> // std::minus#include <numeric> // std::accumulateint myfunction (int x, int y) {return x+2*y;}struct myclass {原创 2016-08-30 22:13:43 · 276 阅读 · 0 评论 -
使用GDB调试C++
GDB是一个由GNU开源组织发布的、UNIX/LINUX操作系统下的、基于命令行的、功能强大的程序调试工具。 ——GDB调试利器Ubuntu14.04自带GNU gdb 7.7,无需安装。生成可执行文件然后执行gdb即可。$ g++ -g -std=c++11 test.cpp -o test$ gdb test(gdb) l可以显示代码段,一次10行,然后按回车可以继续显示。(但是不知道原创 2016-08-25 21:59:30 · 275 阅读 · 0 评论 -
[编程题]数字和为sum的方法数
链接:https://www.nowcoder.com/questionTerminal/7f24eb7266ce4b0792ce8721d6259800 来源:牛客网给定一个有n个正整数的数组A和一个整数sum,求选择数组A中部分数字和为sum的方案数。 当两种选取方案有一个数字的下标不一样,我们就认为是不同的组成方案。 输入描述: 输入为两行: 第一行为两个正整数n(1 ≤ n ≤ 10原创 2017-02-20 18:07:17 · 2608 阅读 · 0 评论 -
Container
vector(constructor)#include<vector>std::vector<int> first; // empty vector of intsstd::vector<int> second (4,100); // four ints with value 100std转载 2017-03-07 13:16:50 · 299 阅读 · 0 评论 -
面试题目汇总
算法数据结构原创 2017-10-10 19:13:12 · 235 阅读 · 0 评论