hackerrank
文章平均质量分 85
lose__way
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hackerrank>Dashboard>C++>STL>Deque-STL
Double ended queue or Deque(part of C++ STL) are sequence containers with dynamic sizes that can be expanded or contracted on both ends (either its front or its back). The member functions of deque th原创 2017-06-10 09:37:14 · 654 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL>Print Pretty
Your manager gave you a text file with many lines of numbers to format and print. For each row ofspace-separated doubles, format and print the numbers using the specifications in theOutput Forma原创 2017-06-10 09:58:52 · 571 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL> Maps-STL
Maps are a part of the C++ STL.Maps are associative containers that store elements formed by a combination of a key value and a mapped value, following a specific order.The mainly used member function原创 2017-06-10 10:02:45 · 470 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL>Sets-STL
Sets are a part of the C++ STL. Sets are containers that store unique elements following a specific order. Here are some of the frequently used member functions of sets:Declaration:sets; //Cre原创 2017-06-10 10:07:36 · 641 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL>Lower Bound-STL
You are given integers in the sorted order. Then you are given queries. In each query you will be given an integer and you have to tell whether that integer is present in the array, if so you have原创 2017-06-10 10:10:59 · 383 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL>Vector-Erase
You are given a vector of integers.Then you are given queries.First query consists of integer denoting the position in the vector which should be removed.Next query consists ofintegers denot原创 2017-06-10 10:17:43 · 482 阅读 · 0 评论 -
hackerrank>Dashboard>C++>STL>Vector-Sort
You are given integers.Sort the integers and print the sorted order.Store the integers in a vector.Vectors are sequence containers representing arrays that can change in size.Declaration原创 2017-06-10 10:20:43 · 550 阅读 · 0 评论
分享