240 发简信
IP属地:浙江
  • 2020-03-07 C++提高编程08-基本框架

    3.9 map/multimap容器 3.9.1 map基本概念 简介: map中所有元素都是pair pair中第一个元素为key(键值),起...

  • 2020-02-29 C++提高编程07-基本框架

    3.8 set/multiset容器 3.8.1 set基本概念 特点:所有元素在插入时自动被排序 本质:set/multiset属于关联式容器...

  • 2020-02-27 C++提高编程06-基本框架

    3.5 stack容器 3.5.1 特点:先进后出 3.5.2 stack常用接口 构造函数: stack<T> stk;//stack采用模板...

  • PAT 甲级 1100 Mars Numbers (20分)

    People on Mars count their numbers with base 13: Zero on Earth is called...

  • PAT 甲级 1084 Broken Keyboard (20分)

    On a broken keyboard, some of the keys are worn out. So when you type so...

  • PAT 甲级 1069 The Black Hole of Numbers (20分)

    For any 4-digit integer except the ones with all the digits being the sa...

  • 2020-02-25 C++提高编程05-基本框架

    关键字: vector容器 deque容器 3.2 vector容器 3.2.1基本概念 功能:vector数据结构和数组非常相似,也称为单端数...

  • 2020-02-23 C++提高编程04-基本框架

    3.1.5 string查找和替换 查找:查找指定字符串是否存在 替换:在指定的位置替换字符串 函数原型: 1 int find(const s...

  • 2020-02-20 C++提高编程03-基本框架

    2.STL初识 2.1 STL的诞生--提高复用性 2.2 STL基本概念 1. STL : Standard Template Library...