How to push an element onto the front of deque in C++

1 Answer

0 votes
#include <iostream> 
#include <deque> 

int main() 
{ 
    std::deque<double> dq = {3.14, 2.18, 4.19, 6.17, 8.27, 5.28}; 

    dq.push_front(7.26);
    
    for (unsigned int i = 0; i < dq.size(); i++) 
        std::cout << dq[i] << ' '; 
}

      
      
      
/*
run:
      
7.26 3.14 2.18 4.19 6.17 8.27 5.28 
  
*/

 



answered Feb 25, 2023 by avibootz

Related questions

1 answer 186 views
2 answers 270 views
1 answer 182 views
1 answer 201 views
1 answer 281 views
2 answers 228 views
...