vector cbegin_vector :: cbegin()函数以及C ++ STL中的示例
vector cbegin
C ++ vector :: cbegin()函數(shù) (C++ vector::cbegin() function)
vector::cbegin() is a library function of "vector" header, it is used to get the const iterator pointing to the first element of the vector.
vector :: cbegin()是“ vector”頭文件的庫(kù)函數(shù),用于獲取指向向量第一個(gè)元素的const迭代器。
It returns a const_iterator which is an iterator point to the constant content(vector), the const_itertator can be increased or decreased just like an iterator but it cannot be used to update/modify the vector content it points to.
它返回一個(gè)const_iterator ,它是指向常量content(vector)的迭代器, const_itertator可以像迭代器一樣增加或減少,但不能用于更新/修改其指向的向量?jī)?nèi)容。
Note: To use vector, include <vector> header.
注意:要使用向量,請(qǐng)包含<vector>標(biāo)頭。
Syntax of vector::cbegin() function
vector :: cbegin()函數(shù)的語(yǔ)法
vector::cbegin();Parameter(s): none – It accepts nothing.
參數(shù): 無(wú) –不接受任何內(nèi)容。
Return value: const_iterator – It returns a constant iterator pointing to the first element of the vector.
返回值: const_iterator –它返回一個(gè)常量迭代器,指向向量的第一個(gè)元素。
Example:
例:
Input:vector<int> vector1{ 1, 2, 3, 4, 5 };Function call:vector<int>::const_iterator cit;cit = vector1.cbegin();cout<C++ program to demonstrate example of vector::cbegin() function
Output
first element is: 10Reference: C++ vector::cbegin()
TOP Interview Coding Problems/Challenges
Run-length encoding (find/print frequency of letters in a string)
Sort an array of 0's, 1's and 2's in linear time complexity
Checking Anagrams (check whether two string is anagrams or not)
Relative sorting algorithm
Finding subarray with given sum
Find the level in a binary tree with given sum K
Check whether a Binary Tree is BST (Binary Search Tree) or not
1[0]1 Pattern Count
Capitalize first and last letter of each word in a line
Print vertical sum of a binary tree
Print Boundary Sum of a Binary Tree
Reverse a single linked list
Greedy Strategy to solve major algorithm problems
Job sequencing problem
Root to leaf Path Sum
Exit Point in a Matrix
Find length of loop in a linked list
Toppers of Class
Print All Nodes that don't have Sibling
Transform to Sum Tree
Shortest Source to Destination Path
Comments and Discussions
Ad: Are you a blogger? Join our Blogging forum.
Please enable JavaScript to view the comments powered by Disqus.
翻譯自: https://www.includehelp.com/stl/vector-cbegin-function-with-example.aspx
vector cbegin
總結(jié)
以上是生活随笔為你收集整理的vector cbegin_vector :: cbegin()函数以及C ++ STL中的示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: ruby 覆盖率测试_Ruby方法覆盖
- 下一篇: c ++向量库_将向量复制到C ++中的