Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,887 questions

51,814 answers

573 users

How to split an array into evenly sized chunks in C++

1 Answer

0 votes
#include <iostream>
#include <vector>

std::vector<std::vector<int>> splitVectorIntoChunks(const std::vector<int>& vec, int chunkSize) {
    std::vector<std::vector<int>> chunks;
    int vecSize = vec.size();
    
    for (int i = 0; i < vecSize; i += chunkSize) {
        std::vector<int> chunk;
        for (int j = i; j < i + chunkSize && j < vecSize; ++j) {
            chunk.push_back(vec[j]);
        }
        chunks.push_back(chunk);
    }
    
    return chunks;
}

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5, 6, 7, 8, 9};
    int chunkSize = 3;
    
    std::vector<std::vector<int>> chunks = splitVectorIntoChunks(vec, chunkSize);
    
    for (const auto& chunk : chunks) {
        for (int num : chunk) {
            std::cout << num << " ";
        }
        std::cout << std::endl;
    }
}

 
 
/*
 
1 2 3 
4 5 6 
7 8 9 
 
*/
 

 



answered Jan 5, 2025 by avibootz

Related questions

1 answer 100 views
2 answers 118 views
1 answer 96 views
1 answer 105 views
1 answer 102 views
1 answer 88 views
1 answer 98 views
...