1
vote
3answers
83 views

how to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum?

How to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum? Like this: (find 10 10) ((10) (9 , 1) (8 , 2) (7 ...
1
vote
2answers
49 views

Binary tree inorder traversal Racket

I am trying to write the algorithm for inorder traversal for a binary tree using RACKET/DR. RACKET (define (print-records node number) (cond [(not (empty? node-left))(print-records ...
2
votes
1answer
126 views

SICP 2.16 interval-arithmetic (scheme)

This isn't a homework question, I'm just left unsatisfied with my understanding of interval arithmetic and the implications of exercise 2.16. The interval arithmetic defined by section 2.14 does not ...
5
votes
1answer
156 views

Euclidean algorithm to solve RR' - NN' = 1. Modular exponentiation with Montgomery algorithm to implement Fermat test in python or Petite Chez scheme

This is as a personal challenge in my introductory programming class taught using Scheme, but I would be equally happy with Python examples. I've already implemented the binary method of modular ...
-3
votes
2answers
195 views

Modular-inverse algorithm [duplicate]

Possible Duplicate: multiplicative inverse of modulo m in scheme I have written a code for finding to solve x and y as a pair. I need to write a modular-inverse code that finds the ...
1
vote
2answers
206 views

make tree in scheme

(define (entry tree) (car tree)) (define (left-branch tree) (cadr tree)) (define (right-branch tree) (caddr tree)) (define (make-tree entry left right) (list entry left right)) (define (mktree order ...
1
vote
1answer
273 views

Walking through a binary tree

I'm having issues writing a function to walk through a binary tree, the function takes in a search_term, list and returns true or false. Here is what I have and it's essentially the same thing I found ...
9
votes
5answers
1k views

Improving performance of Racket Code and error when trying to byte compile

I hacked together several code snippets from various sources and created a crude implementation of a Wolfram Blog article at http://bit.ly/HWdUqK - for those that are mathematically inclined, it is ...
-1
votes
1answer
286 views

Graph theory and Functional Programming [closed]

I have been learning Scheme for quite sometime now. Simultaneously, I am also taking a Graph Theory course at my university. One of the requirements of this course is a programming course project. I ...
1
vote
2answers
467 views

Dijkstra algorithm on scheme

I have created pretty much every procedure needed for my Dijkstra algorithm to work but I am having some problems with the shortestpath procedure, I wrote it on paper but can't get it to work on ...
1
vote
1answer
152 views

Problem writing recursive enumeration function in Scheme

I'm writing a recursive enumeration function, and I'm having a simple error somewhere. Here's what should happen: (enum 1 0.5 2.5) > (1.0 1.5 2.0 2.5) Here's the code: (define enum ...
2
votes
2answers
648 views

Computing the longest common subsequence of two lists in Scheme in polynomial time

So I need to calculate the longest common subsequence of two lists, but it needs to be in polynomial time. The only problem i'm having is that I'm not allowed to use "!" at all. This means that I ...
2
votes
1answer
174 views

Why the bleep isn't my continued fraction approximating properly?

Reading through more SICP and I'm stuck on exercise 1.3.8. My code works properly for approximating 1/phi, but doesn't work for approximating e - 2. (define (cont-frac n d k) (define (frac n d k) ...
6
votes
1answer
610 views

Mauritus national flag problem

I've made a solution for the Dutch national flag problem already. But this time, I want to try something more difficult: the Mauritus national flag problem - 4 colours, instead of 3. Any suggestions ...
3
votes
4answers
354 views

Possible “boat loads” question

You know the river-crossing problems. Here is a sort description: Once upon a time, three cannibals were guiding three missionaries through a jungle. They were on their way to the nearest mission ...
3
votes
2answers
549 views

Fermat factorization method limit

I am trying to implement Fermat's factorization (Algorithm C in The Art of Computer Programming, Vol. 2). Unfortunately in my edition (ISBN 81-7758-335-2), this algorithm is printed incorrectly. what ...
2
votes
1answer
470 views

Miller-Rabin scheme implementation unpredictable output

Greetings everyone, I am new to scheme. I have tried and implemented probabilistic variant of rabin-miller algorithm using plt scheme. I know it is probabilistic and all, but I am ...
5
votes
2answers
614 views

Help understanding Sieve of Eratosthenes implementation

This is boring, I know, but I need a little help understanding an implementation of the Sieve of Eratosthenes. It's the solution to this Programming Praxis problem. (define (primes n) (let* ...
1
vote
1answer
1k views

Convert Byte String to Int in Scheme

I have code like this to convert hex into byte string (define (word->bin s) (let ((n (string->number s))) (bytes (bitwise-and (arithmetic-shift n -24) #xFF) (bitwise-and ...
5
votes
3answers
3k views

Scheme How To Return Multiple Values?

I notice that almost all scheme functions can only return one list as output. In the following, I would like to return multiple values of all the adjacent nodes of neighbors. (define (neighbors l ...
1
vote
2answers
1k views

Best First Search algorithm in Scheme

Okay this is a homework question, and I just don't have a clue how I suppose to start. Some help and hints will be much appreciated. I need to use a heuristic function to solve a maze type problem. ...
2
votes
2answers
162 views

two methods of composing functions, how different in efficiency?

Let f transform one value to another, then I'm writing a function that repeats the transformation n times. I have come up with two different ways: One is the obvious way that literally applies the ...
1
vote
2answers
3k views

How to improve this mergesort in scheme?

I am a C++ programmer, I wrote this code to see if I can think functionally :) Any hints to improve it ? (define (append listOne listTwo) (cond ((null? listOne) listTwo) (else (cons (car ...
0
votes
2answers
740 views

What is the time complexity of this Scheme exponentiation function?

What is the time complexity? Why? (define (mult a b) (define (internal a accum) (if (= a 1) accum (internal (- a 1) (+ accum b)))) (internal a b)) (define ...