Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7867555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T00:44:31+00:00 2026-06-03T00:44:31+00:00

I tried doing a tail recursive function that will count the elements of a

  • 0

I tried doing a tail recursive function that will count the elements of a list, followed the rules, used an acumulator, but when I run it like this:

lstcountr [1..98765432];;

I get this:

System.OutOfMemoryException: Exception of type ‘System.OutOfMemoryException’ was thrown.

this is my function (which I thought is tail recursive /efficient):

let lstcountr ls =
    let rec loop ls total = 
        match ls with
        | [] -> total
        | hd::tl -> loop tl total+1I
    loop ls 0I

can this be done better ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T00:44:32+00:00Added an answer on June 3, 2026 at 12:44 am

    You function isn’t tail recursive.

    | hd::tl -> loop tl total+1I
    

    Should be

    | hd::tl -> loop tl (total+1I)
    

    Operators are interpreted after function calls, normally you can’t tell in situations like this because the results are identical, but that is not true with tail recursion.

    Also as Tejs said, you are creating a list of too many items which is causing your OutOfMemoryException. Have you tried using a seq { }?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I tried doing $.ajaxStart(function(){}) , but it does not replace it, but appended.
EDIT1 : I tried doing sqlflush to reset everything, but that didn't help. EDIT2
I tried doing this: [toolbar setTint:[UIColor colorWithPatternImage:[UIImage imageNamed:@thingFromMyBundle.png]]]; but it just ended up black.
Doing a simple Squeryl database lookup, but trying to exclude a value. I've tried:
I tried doing tutorials but it is unorganized and unstructured, where can I learn
I tried doing the following class SomeModel(db.Model): prev = db.ReferenceProperty(SomeModel) next = db.ReferenceProperty(SomeModel) but
I tried doing this but then it is not working <?php if ($_SERVER['SERVER_NAME']=='http://www.testground.idghosting.com/idi' &&
What is the maven dependency for j2ee.jar. I tried doing this way. But still
I tried doing something like this but it doesn't work! $ch = curl_init(); curl_setopt($ch,
I havent found info on this subject yet, but maybe someone have tried doing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.