Tail recursion to calculate sum of array elements. Last Updated : 17 Mar, 2025 Comments Improve Suggest changes Like Article Like Report Given an array arr, we need to find the sum of its elements using Tail Recursion Method. We generally want to achieve tail recursion so that compilers can optimize the code. If the recursive call is the last statement, the compiler can optimize it by eliminating the need to store the parent call's state.Examples: Input: arr = [1, 8, 9]Output: 18Explanation: The sum of the elements in the array [1, 8, 9] is 18.Input: arr = [2, 55, 1, 7]Output: 65For the Normal Recursion Method, check out this guide: Sum of Array Elements Using RecursionApproach:Extract arr[size - 1] and add it to the sum. Call the function again with size - 1 (excluding the last element).Instead of calculating the sum separately, pass the updated sum in each call.Keep reducing size until it reaches 0.Once all elements are added, return the accumulated sum as the result. C++ #include <bits/stdc++.h> using namespace std; // Function to calculate the sum of elements using Tail Recursion int arrSum(vector<int> &arr, int n, int sum = 0) { // Base Case if (n == 0) return sum; // Recursive call return arrSum(arr, n - 1, sum + arr[n - 1]); } int main() { // Input array vector<int> arr = {2, 55, 1, 7}; int n = arr.size(); cout << arrSum(arr, n, 0) << endl; return 0; } Java class GfG { // Function to calculate the sum of elements using Tail Recursion static int arrSum(int[] arr, int n, int sum) { // Base Case if (n == 0) return sum; // Recursive call return arrSum(arr, n - 1, sum + arr[n - 1]); } public static void main(String[] args) { int arr[] = { 2, 55, 1, 7 }; int n = arr.length; System.out.print(arrSum(arr, n, 0)); } } Python def arrSum(arr, n, sum=0): # Base Case if n == 0: return sum # Recursive call return arrSum(arr, n - 1, sum + arr[n - 1]) # Driver code arr = [2, 55, 1, 7] n = len(arr) print(arrSum(arr, n, 0)) C# using System; class GfG { // Function to calculate the sum of elements using Tail // Recursion static int arrSum(int[] arr, int n, int sum) { // Base Case if (n == 0) return sum; // Recursive call return arrSum(arr, n - 1, sum + arr[n - 1]); } public static void Main() { int[] arr = { 2, 55, 1, 7 }; int n = arr.Length; Console.WriteLine(arrSum(arr, n, 0)); } } JavaScript function arrSum(arr, n, sum = 0) { // Base Case if (n === 0) return sum; // Recursive call return arrSum(arr, n - 1, sum + arr[n - 1]); } // Driver code let arr = [ 2, 55, 1, 7 ]; let n = arr.length; console.log(arrSum(arr, n, 0)); Output65 Time Complexity: O(n), where n is the length of array.Auxiliary Space: O(n), due to recursive function calls stored in the call stack. Comment More infoAdvertise with us Next Article Tail recursion to calculate sum of array elements. K krikti Follow Improve Article Tags : Recursion DSA tail-recursion Practice Tags : Recursion Similar Reads Introduction to Recursion The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution 14 min read What is Recursion? Recursion is defined as a process which calls itself directly or indirectly and the corresponding function is called a recursive function.Example 1 : Sum of Natural Numbers Let us consider a problem to find the sum of natural numbers, there are several ways of doing that but the simplest approach is 8 min read Difference between Recursion and Iteration A program is called recursive when an entity calls itself. A program is called iterative when there is a loop (or repetition).Example: Program to find the factorial of a number C++ // C++ program to find factorial of given number #include<bits/stdc++.h> using namespace std; // ----- Recursion 6 min read Types of Recursions What is Recursion? The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. Using recursive algorithm, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inord 15+ min read Finite and Infinite Recursion with examples The process in which a function calls itself directly or indirectly is called Recursion and the corresponding function is called a Recursive function. Using Recursion, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inorder/Preorder/Postorder Tree Tr 6 min read What is Tail Recursion Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call.For example the following function print() is tail recursive.C++// An example of tail recursive funct 7 min read What is Implicit recursion? What is Recursion? Recursion is a programming approach where a function repeats an action by calling itself, either directly or indirectly. This enables the function to continue performing the action until a particular condition is satisfied, such as when a particular value is reached or another con 5 min read Why is Tail Recursion optimization faster than normal Recursion? What is tail recursion? Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call. What is non-tail recursion? Non-tail or head recursion is defined as a recur 4 min read Recursive Functions A Recursive function can be defined as a routine that calls itself directly or indirectly. In other words, a recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is commonly used in programming to solve problems that can be broken do 4 min read Difference Between Recursion and Induction Recursion and induction are fundamental ideas in computer science and mathematics that might be regularly used to solve problems regarding repetitive structures. Recursion is a programming technique in which a function calls itself to solve the problem, whilst induction is a mathematical proof techn 4 min read Like