Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generating subarrays using recursion #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Subarray.c++
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// C++ code to print all possible subarrays for given array
// using recursion

#include <bits/stdc++.h>
using namespace std;

// Recursive function to print all possible subarrays for
// given array
void printSubArrays(vector<int> arr, int start, int end)
{
// Stop if we have reached the end of the array
if (end == arr.size())
return;
// Increment the end point and start from 0
else if (start > end)
printSubArrays(arr, 0, end + 1);
// Print the subarray and increment the starting point
else {
cout << "[";
for (int i = start; i < end; i++)
cout << arr[i] << ", ";
cout << arr[end] << "]" << endl;
printSubArrays(arr, start + 1, end);
}
return;
}

int main()
{
vector<int> arr = { 1, 2, 3 };
printSubArrays(arr, 0, 0);
return 0;
}

// This code is contributed by Sania Kumari Gupta