Tagged Questions
1
vote
1answer
71 views
managing two libraries with cabal that depend on each other
I've got the following question:
I've got two Haskell libraries that depend on each other, and both libraries are managed by cabal. The corresponding cabal files look like this:
Library 1:
name: ...
1
vote
3answers
77 views
Haskell multidimensional list : Beginner problems
I want to delete every string in a list which starts with "h".
["hawrw", "basw", "HasD" , "hgkas"] => ["basw", "HasD"]
My code is:
kat (x:xs) = if head x == "h" then kat(xs) else x ++ kat(xs)
...
0
votes
2answers
48 views
Haskell List Recursion mistake?
Hey I am pretty new to Haskell.
So I want to eliminate all integers which are greater than 500 in a list.
import Data.List
leng x = if(head x > 500) then leng(tail x) else [head x]++leng(tail x)
...
4
votes
6answers
240 views
Implementing recursion in Haskell without input variable
So im still very new to programming and I'm struggling a lot with the Syntax of Haskell. I kind of know what I want to implement but im not really sure how to do it so I came here to ask.
So what I ...
1
vote
4answers
135 views
haskell repeat all chars in a string
i just started with Haskell and wanted to do a little function that takes an integer and a String to repeat each char in the String as often as the integer implies.
e.g.: multiply 3 "hello" would ...
2
votes
2answers
111 views
Writing a recursive function with condition In Haskell:
I want a function f::[type]->[type] that is recursive defined roughly like this :
It starts with a list with 1 element x. Then it applies 3 "generator functions" lets call them
generatorA, ...
5
votes
2answers
72 views
Can't get type signature working for simple recursive function
Here is my code:
test :: (Num a) => [a] -> a
test [] = 0
test [x:xs] = x + test xs
Yet when I run it through ghci as :l test, I get this error:
[1 of 1] Compiling Main ( ...
3
votes
1answer
131 views
Build balanced binary tree with foldr
I write the function foldTree that build balanced binary tree from list.
I must use foldr and it's ok, i used it, but i make insertInTree function recursive =( for now i know only this way to walk ...
3
votes
2answers
152 views
Rewrite recursion function as a pipeline functions composition
I'm writing my homework (CIS194 Haskell course).
I must rewrite the following recursive function to pipeline functions (without obvious recursion).
fun2 :: Integer -> Integer
fun2 1 = 0
fun2 n
...
43
votes
7answers
3k views
Ackermann very inefficient with Haskell/GHC
I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit,
C: 1.6s, gcc -O3 ...
8
votes
3answers
224 views
Haskell - Removing duplicates from a list
I'm trying to define a function which will remove duplicates from a list. So far I have a working implementation:
rmdups :: Eq a => [a] -> [a]
rmdups [] = []
rmdups (x:xs) | x `elem` xs = ...
1
vote
1answer
72 views
Type problems while generating a list of random numbers in range in haskell and ghci
Heyhey stackoverflowers,
As a PHP Developer, I've learned so much about coding. Used it for developing with Python, which is a very easy to learn coding language. Not at university ve have to write ...
6
votes
3answers
265 views
Check if list is flat in Haskell
In The Little Schemer there is a function to check, whether the list is flat:
(define lat?
(lambda (l)
(cond
((null? l) #t)
((atom? (car l)) (lat? (cdr l)))
(else #f))))
I'm ...
1
vote
0answers
144 views
Infinite Loop Haskell [closed]
I'm trying to write a function that given a world, it iterates it as many times as specified then returns the new world. But when I run the function, it will iterate once, and then throw a ...
1
vote
1answer
100 views
Recursive function and stopping condition in Haskell
I am implementing a recursive function and I want the stopping condition be (2*scope) which is parameter to function
sortByManhattanDistance agent (2*scope) scope xs sortedNearFoodList = ...
1
vote
1answer
134 views
Haskell - Avoiding a control stack overflow with tree recursion
For a university assignment, we have to investigate the various solutions to the knapsack problem, and then implement a solution in both Haskell and Python.
I have chosen brute force. I realize there ...
6
votes
2answers
179 views
Idiomatic Haskell code to simplify recursion
I need to compute foo n = maximumBy (comparing p) [1..n], where p :: Int -> Int is slow. But I know that p n < n for all n > 0 and want to use this fact to speed up this computation the ...
0
votes
1answer
101 views
Haskell: Generating k-itemsets for apriori
I am trying to generate all k-item sets for use in apriori, I am following this pseudocode:
L1= {frequent items};
for (k= 2; Lk-1 !=∅; k++) do begin
Ck= candidates generated from Lk-1 (that is: ...
3
votes
2answers
103 views
Converting Recursive Function to Tail Recursion [closed]
I am new Haskell and still trying to understand some of the basics. When writing recursive functions, I naturally write them in a recursive or tail recursive way without consciously selecting one over ...
2
votes
3answers
186 views
Haskell: recursively convert hex string to integer?
For my homework assignment, I need to convert a hexadecimal string to a base-10 integer using a recursive function (with as many helper methods as necessary).
This is what I've got so far:
-- ...
0
votes
2answers
90 views
Haskell - Basic Tail Recursion
I have a function that has parameters
whatIndex :: (Eq a) => a -> [a] -> Integer
where I return the index of a inside [a], starting at 0, or return -1 if it's not found. This is what I ...
0
votes
2answers
154 views
Recursive functions in haskell?
I am trying to learn Haskell and was working on a book problem on recursive functions.
> If X_1 = 1 then X_2 = 1 + X_1 = 2, X_3 = 1 + X_1 + X_2
or when it is 5, X_5 = 1 + X_4 + X_3 + X_2 ...
9
votes
5answers
427 views
How to simplify nested-if using to return value in Haskell
I want to check the condition of the previous if condition to determine the next if condition is to be executed or not. Each if condition may return a value.
Edit: Sorry for that the example I ...
0
votes
2answers
87 views
return the rest of a list in Haskell recursion
Hey guys so I'm trying to create a simple program to delete the first occurence of a element then return the rest of the list.
It's been a while and I'm wondering why I'm getting this parse error on ...
8
votes
4answers
248 views
Improvement of the Greedy Algorithm
I've been working on an abstract chess algorithm using Haskell (trying to expand my understanding of different paradigms), and I've hit a challenge that I've been pondering about for weeks.
Here's ...
10
votes
1answer
336 views
Recursion Schemes in Agda
Needless to say, the standard construction in Haskell
newtype Fix f = Fix { getFix :: f (Fix f) }
cata :: (Functor f) => (f a -> a) -> Fix f -> a
cata f = f . fmap (cata f) . getFix
...
7
votes
3answers
173 views
Recursion using lists - Haskell
I am trying to write a recursive function that will take a list containing a list of integers as an input and return a tuple of type ([Int],Int).
([Int],Int)
This is for a "board game" where you are ...
-3
votes
2answers
121 views
Using map and recursive functions in Haskell [closed]
so I'm learning how to program in Haskell.
One thing I would like to see is adding 1 to each element of a list by using map and using recursion that doesn't use a list comprehension and without using ...
2
votes
2answers
136 views
apply window function to get a recursive list, how can I do?
I just come across a challenging problem (from programming competition practice) that contain recursive sequence as following
given 3 numbers m n k find element a[k] where
a[0] = m
a[1] = n
a[i] = ...
3
votes
3answers
170 views
Why the Haskell sequence function can't be lazy or why recursive monadic funtions can't be lazy
With the question Listing all the contents of a directory by breadth-first order results in low efficiencyI learned that the low efficiency is due to a strange behavior of the recursive monad ...
3
votes
2answers
136 views
How to recursively ask for input, and return a list
I've been trying many different ways to do this in Haskell, and I can't for the life of me figure this out.
I want to get a list of names from the user, and if I know the length of the list (let's ...
5
votes
1answer
199 views
Are these functions tail recursive?
I'm learning tail recursion and I'm having some difficulties in determining whether my function is tail recursive or not (mainly on functions which I use another function).
I've implemented the two ...
6
votes
2answers
186 views
Does tail recursion necessarily need an accumulator?
For instance, since the following function don't have an accumulator, is it still tail recursive?
belong:: (Ord a) => a -> [a] -> Bool
belong a [] = False
belong a (h:t)
| a == h = True
...
3
votes
1answer
129 views
Why is Haskell giving “ambiguous type variable” error?
A past paper problem asked me; to define a function p :: [a] -> [a] that swaps every two items in a list. Your function should swap the first with the second item, the third
with the fourth, and so ...
2
votes
3answers
312 views
Haskell - Most frequent value
how can i get the most frequent value in a list example:
[1,3,4,5,6,6] -> output 6
[1,3,1,5] -> output 1
Im trying to get it by my own functions but i cant achieve it can you guys help me?
...
9
votes
4answers
362 views
Haskell recursion and memory usage
I'm quite new to Haskell, and I'm getting comfortable with the idea of replacing loops with recursion. I'm fiddling around with a pet project, and I wanted to test some text input functionality so I ...
5
votes
3answers
337 views
Print Diamond Pattern using Haskell
I need to write a Haskell program that will generate a diamond output recursively.
Here is some sample output for given input
input : 1
output :
*
* *
*
input : 2
output :
*
* *
*
...
0
votes
1answer
176 views
Primitive Recursion If Then Else actually executing If Else Then
I have a problem with the projections in my definition of If Then Else. It's actually executing as If-Else-Then.
import Prelude hiding (pred,and,or,not)
data PR = Z
| S
| P Int
| C ...
1
vote
1answer
144 views
Is it possible to define subtraction in Primitive Recursion without a predecessor function?
I have an assignment where I'm writing a bunch of basic Primitive Recursive functions, one of them is subtraction. I was not provided with a definition for predecessor and think it's unlikely I can ...
1
vote
2answers
246 views
Primitive Recursive functions
I'm trying to define some basic Primitive Recursive functions in Haskell. Why is my times function recursing one too many times (ie eval times[x,y] is resulting in (x+1)*y)? I think my problem is ...
-4
votes
2answers
133 views
Haskell convert “case of” statement to tail recursive code
I need help.
I have a function of that form
myFunction = case myFunction of
(Nothing) -> (Just)
(Just) -> (Just)
I want to make it tail recursive.
How would one do it ?
I understand ...
-3
votes
1answer
119 views
Check for alternating 0s and 1s using recursion in haskell [closed]
I want to write a recursive function to check whether a String (of 0s and 1s) is alternating.
For example:
In: 101010
Out: True
In: 110010
Out: False
How can I write such a function, and how am ...
3
votes
4answers
267 views
Haskell Switch/Case Use
As part of a mini interpreter that I'm writing in Haskell, I'm writing a function that does the following: In case of eval (App e1 e2), I want to recursively evaluate e1 (eval e1), setting the result ...
0
votes
2answers
125 views
How does this cyclic recursion provide the desired result?
Consider the following abbreviated code from this excellent blog post:
import System.Random (Random, randomRIO)
newtype Stream m a = Stream { runStream :: m (Maybe (NonEmptyStream m a)) }
type ...
2
votes
0answers
174 views
Haskell tips/why doesnt this scale linearly?
My friend wrote a program which compares random arrangements of die faces to find the one with the most evenly distributed faces - especially when the faces are not a mere sequence.
I translated his ...
-1
votes
1answer
81 views
My recursion hang
It compiles correctly, but doesn't work.
It works for [] but if its anything else it just hang forever. test1 - ok, test 2 hang.
--Tests pour 'effectuerAchat'.
test1 = effectuerAchat achat1_1 [] == ...
0
votes
1answer
137 views
Recursive Haskell function that separates a list into a pair of lists, then goes through the pair
I have a function, lets call it fct1, that take any list and get all the equal one in a list and all the rest in a second list and they are inside a tuple.
data sale : ( sale string int)
fct1 ...
47
votes
1answer
2k views
What are paramorphisms?
Reading through this classic paper, I'm stuck on paramorphisms. Unfortunately the section is quite thin, and the Wikipedia page doesn't say anything.
My Haskell translation is:
para :: (a -> [a] ...
1
vote
1answer
89 views
type error in function binding
I am trying to achieve prime number through recursion, I know how to do it with list.
Type error in function binding
primes :: [Int]
primes = sieve [2..10]
sieve[] = []
sieve(x:xs) = x : ...
3
votes
1answer
146 views
Haskell recursion “:” replaced by || why?
I have a question why this function cannot work with ":" but works with || and why ":" is replaced by ||
I mean why cannot write
contains xs (y:ys) = prefix xs (y:ys) : contains xs ys
...


