C++ STL 中的 deque push_back( )
本任务演示 C++ STL 中 deque push_back( ) 函数的功能。
什么是 Deque?
Deque 是双端队列,它是一种序列容器,可以在两端进行扩展和收缩操作。队列数据结构只允许用户在末尾插入数据,并在开头删除数据。让我们以公交车站的队列为例:只能在队列末尾添加人,而排在最前面的人是第一个被移除的人;而在双端队列中,可以在两端插入和删除数据。
什么是 deque push_back( ) 函数?
push_back( ) 函数用于在 deque 的末尾插入新元素。
语法
dequename.push_front(value)
参数
value − 定义要插入到 deque 末尾的新元素。
示例
输入 Deque − 45 46 47 48 49
输出 新 Deque − 45 46 47 48 49 50
输入 Deque − B L A N K E T
输出 新 Deque − B L A N K E T S
可采用的方法
首先,我们声明 deque。
然后,我们打印 deque。
然后,我们定义 push_back( ) 函数。
使用上述方法,我们可以在 deque 的末尾插入新元素。新元素的数据类型应与 deque 相同。
示例
// C++ code to demonstrate the working of deque push_back( ) function #include<iostream.h> #include<deque.h> Using namespace std; int main ( ){ // initializing the deque Deque<int> deque = { 71, 75, 73, 76, 77 }; // print the deque cout<< “ Deque: “; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< *x << “ “; // defining the push_backt( ) function deque.push_back(78); // printing new deque after inserting new element for( x = deque.begin( ); x != deque.end( ); ++x) cout<< “ “ << *x; return 0; }
输出
如果我们运行上述代码,它将生成以下输出。
Input - Deque: 71 75 73 76 77 Output - New Deque:71 75 73 76 77 78 Input – Deque: B R E A K Output – New Deque: B R E A K S
示例
// C++ code to demonstrate the working of deque push_back( ) function #include<iostream.h> #include<deque.h> Using namespace std; int main( ){ // initializing deque deque<int> deque ={ 64, 65, 66, 69, 68 }; cout<< “ Deque: “; for( auto x = deque.begin( ); x != deque.end( ); ++x) cout<< *x << “ “; // defining the push_back( ) function deque.push_back(67); // printing new deque after inserting new element for(x = deque.begin( ); x != deque.end( ); ++x) cout<< “ “ << *x; return 0; }
示例
如果我们运行上述代码,它将生成以下输出。
Input: 64 65 66 69 68 Output: 64 65 66 69 68 67 Input: T U T O R I A L Output: T U T O R I A L S
广告