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 8565143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:21:27+00:00 2026-06-11T17:21:27+00:00

As an exercise of learning scala and functional programming, I implemented the following non

  • 0

As an exercise of learning scala and functional programming, I implemented the following non tail-recursive def that calculates the pascal’s number at any location. The program itself serves as the definition of pascal’s triangle. It looks pictorially as follows

      1
    1  1
   1  2  1
  1 3   3 1
 1 4  6  4 1
1 5 10 10 5 1
...

def pascal(c: Int, r: Int): Int =
  if (c == 0 || c == r) 1 else pascal(c - 1, r - 1) + pascal(c, r - 1)

However when trying to run for pascal(25,50) on Mac OS X 10.6.8 (2.53 GHz Intel Core 2 Duo) it still hasn’t finished running after 20 min.

Just to compare with erlang, I installed R15B02 and wrote equivalent program as follows:

-module(pascal).
-export([calc_pascal/2]).

calc_pascal(0,_) -> 1;
calc_pascal(C,R) when C==R -> 1;
calc_pascal(C,R) when C<R  -> calc_pascal(C-1,R-1) + calc_pascal(C-1,R).

pascal:calc_pascal(25,50) finishes in ~4sec.

Why might be the reason for such a huge performance difference? Is jvm not as advanced as erlang runtime for recursive programs?

  • 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-11T17:21:28+00:00Added an answer on June 11, 2026 at 5:21 pm

    If I make the same mistake in the Scala program that you made in the Erlang version, it runs very fast. Might this be the reason?

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

Sidebar

Related Questions

I'm trying (as a self-learning exercise) to create a Clojure macro that will generate
I am working on a POSIX C learning exercise that involves recursively listing files/folders
I've been trying to do something as a learning exercise that I thought should
As a learning exercise, I am creating a program that converts characters entered through
I'm designing an application that supports plugin development. Its more of a learning exercise.
query level: beginner As part of a learning exercise I have written code that
As a learning exercise i want to create a simple web api and consume
As a learning exercise I'm building a basic scientific computation environment based on .NET.
I'm creating a blog engine as a learning exercise and one particular problem has
I am writing a huffman implementation in Python as a learning exercise. I have

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.