8
votes
6answers
263 views

Finding unique (as in only occurring once) element haskell

I need a function which takes a list and return unique element if it exists or [] if it doesn't. If many unique elements exists it should return the first one (without wasting time to find others). ...
7
votes
1answer
110 views

Equivalence classes and union/find in a functional language

For an automata algorithm, I require a fast Union-Find data structure in a functional language. Since I need to formally prove the correctness of the data structure, I would prefer a simple structure. ...
1
vote
2answers
115 views

Can branch and bound algorithms be implemented purely functionally?

General Description of Branch and Bound From Wikipedia's Branch and Bound: This step is called pruning, and is usually implemented by maintaining a global variable m (shared among all nodes of ...
1
vote
3answers
104 views

find the next greatest number, using list in OCaml

Here is one interview question: find the next greatest number that can be form by same digit of the given number .. input: 4765, output: 5467 If using array, it is not that hard. ...
0
votes
2answers
157 views

scala functional quick sort

In the chapter 2 of the book http://www.scala-lang.org/docu/files/ScalaByExample.pdf, M. Odersky wrote following implementation of quick sort def sort(xs: Array[Int]): Array[Int] = { if (xs.length ...
1
vote
1answer
90 views

Is there an efficient algorithm to find which composition of boolean functions will match the output of a given boolean function?

Suppose I have the following boolean functions. def Bottom(): return False def implies(var1, var2): if var1 == True and var2 == False: return False return True def land(var1, var2): ...
6
votes
3answers
295 views

Tail Recursive Levenshtein Distance

I implemented Levenshtein Distance in a pretty standard way in F# as an exercise let lastchar (s:string) = s.Substring(s.Length-1, 1) let lastchar_substring (s:string) len = s.Substring(len-1, 1) ...
3
votes
2answers
156 views

Simplest way to solve a maze without mutability

After learning some Scala and the benefits of FP, I am reimplementing some of my previous CS assignments to better understand FP. However, I got to one assignment that seems impractical to implement ...
-2
votes
1answer
123 views

Write bubble sort more concise way? [closed]

is there some more concise way to write array sorting method by elements size using bubble sort algorithm implementation ? I'm not looking for a speed optimization neither, just for a more compact ...
0
votes
2answers
147 views

Functional “All except one”

How I can declare function that takes number and list of numbers, and returns NONE if there is no such number in the list, otherwise returns list option ('Maybe' in Haskell) without this number? If ...
1
vote
2answers
106 views

FIFA Scenario Logic [closed]

I always wondered about FIFA's (game) logic. Do they rely on lots of if statements for game rules and other ruley things? Like: if( ball.x > areaLeft.x || ball.y > areaTop.y ) { out(); } ...
4
votes
2answers
88 views

Find at least one element that exists in all three lists in OCaml

We have three lists which contain people's names. All three lists have been sorted alphabetically. Now we need to find at least one name which appear in all three lists. The algorithm ...
2
votes
4answers
135 views

functional programming algorithm for finding repeated characters

I am converting the "zxcvbn" password strength algorithm from JavaScript to Scala. I am looking for a pure functional algorithm for finding sequences of repeating characters in a string. I know that ...
4
votes
2answers
157 views

FP homework. Is it possible to define a function using nested pattern matching instead of auxillary function?

I am solving the Programming assinment for Harvard CS 51 programming course in ocaml. The problem is to define a function that can compress a list of chars to list of pairs where each pair contains a ...
2
votes
1answer
176 views

Cannot instantiate a binary_function for std::less / std::greater

I'm trying to write a function that will print the contents of both minheap and maxheap but I'm having trouble with the comparators. I tried using a ternary operator, but it doesn't work since ...
-2
votes
1answer
141 views

Efficiency in Imperative programming and Functional programming [closed]

I have a question about the performance of IP and FP. Let's say I have a function to compute nth Fibonacci number. In imperative programming I have a choice to computing the nth Fibonacci number ...
0
votes
1answer
154 views

Breaking up functions into passive (algorithm) and active (execution) objects

Summary What are the pros and cons of splitting pure functions into passive objects that describe the algorithms and active objects that can execute those algorithms? Note that the situation is ...
2
votes
1answer
270 views

Understanding List.fold_left and implementing insertion sort using it

I'm trying to learn OCaml, and I'm still struggling a bit with the fold functions. I've done a bit of research and I've found the following code snippet (written in Scala) implementing insertion sort ...
1
vote
4answers
86 views

Given an object A and a list of objects L, how to find which objects on L are clones of A without testing all cases?

Using JavaScript notation: A = {color:'red',size:8,type:'circle'}; L = [{color:'gray',size:15,type:'square'}, {color:'pink',size:4,type:'triangle'}, {color:'red',size:8,type:'circle'}, ...
1
vote
2answers
242 views

How to rewrite finding max contiguous subarray in Dynamic Programming using functional programming paradigm in ruby?

I wrote the following code to find the contiguous subarray with maximum sum, which I tink pretty ugly: The problem is my internal thinking of this problem (using DP) is imperative. How can I refactor ...
1
vote
4answers
81 views

How to finetune map function and avoid using flatten

I have the following code to list all possible permutations of a give string. But due to my awkward list (ruby array) manipulation and limited knowledge on functional programming, I have to use ...
4
votes
1answer
389 views

Clojure DAG (Bayesian Network)

I would like to build a Bayesian Network in clojure, since I haven't found any similar project. I have studied a lot of theory of BN but still I can't see how implement the network (I am not what ...
8
votes
3answers
572 views

Stumped with functional breadth-first tree traversal in Clojure?

Say I have a tree defined as per the recommendation in this post, although it's a vector in my case, which hopefully shouldn't matter (they're vectors in Programming Clojure book): (def tree [1 [[2 ...
6
votes
3answers
344 views

How make this piece of Haskell code more concise?

As practice, I am trying to write a simulation for the casino game "war" in Haskell. http://en.wikipedia.org/wiki/Casino_war It is a very simple game with a few rules. It would be an otherwise very ...
18
votes
2answers
3k views

Which algorithms are hard to implement in functional languages?

I'm dabbling in functional languages and I have found some algorithms (especially those that use dynamic programming) harder to write and sometimes less efficient in worst case runtime. Is there a ...
18
votes
3answers
1k views

How does one write efficient Dynamic Programming algorithms in Haskell?

I've been playing around with dynamic programming in Haskell. Practically every tutorial I've seen on the subject gives the same, very elegant algorithm based on memoization and the laziness of the ...
1
vote
1answer
118 views

Why parallel qsort in clojure slow than implementation of common?

I'm writing a parallel qsort algorithm, but he working slow than common implementation. I think the problem is in function 'concat'. How to speed up the algorithm? (defn qsort-orig [L] (if (empty? ...
3
votes
1answer
148 views

Haskell: effective computation of recursively-defined function values

I want to compute the recursively-defined function values r(i,j), which are defined by r i j | i<0 || j<0 = 0 | i==0 && j==0 = 1 | otherwise = (i-1) * r (i-2) j + r ...
2
votes
5answers
626 views

Purely functional set

Is there an algorithm that implements a purely functional set? Expected operations would be union, intersection, difference, element?, empty? and adjoin. Those are not hard requirements though and I ...
10
votes
2answers
258 views

(Un)folding a sheet of paper according to a pattern and giving the order of the layers

Last friday, in a french programming contest, we were given a paper folding problem which was as follows: Given a square sheet of paper and a folding pattern, write a function "fold(pattern)" that ...
7
votes
2answers
547 views

implementing a basic search engine with prefix tree

The problem is the implementing a prefix tree (Trie) in functional language without using any storage and iterative method. I am trying to solve this problem. How should I approach this problem ? Can ...
4
votes
2answers
301 views

Stack overflow on an OCaml recursive solution to the knight's shortest path on chess board puzzle

The question is as described here: Knight's Shortest Path Chess Question. I tried to solve it using an intuitive recursive method, as follows: let is_in_list x s = List.exists (fun y -> if y = ...
1
vote
4answers
1k views

Find prime numbers using Scala. Help me to improve

I wrote this code to find the prime numbers less than the given number i in scala. def findPrime(i : Int) : List[Int] = i match { case 2 => List(2) case _ => { val primeList = ...
-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 ...
7
votes
4answers
311 views

How do I summarize array of integers as an array of ranges?

I'd like to take input such as: [1,2,4,5,6,7,9,13] and turn it into something like the following: [[1,2],[4,7],[9,9],[13,13]] Each sub-array represents a range of integers.
4
votes
6answers
221 views

Extracting regions from a Scala Array

I don't really know how to describe what I'm doing, but this example should help: val vals = Array( (0, true), (1, true), (2,true), (3,true), ...
8
votes
1answer
439 views

Equation from “Programming Pearls” - can somebody explain me?

It's feel like I'm stuck, my friends. Can somebody explain me pick equations from "Pearls of Functional Algorithm Design", chapter 11 ("Not the maximum segment sum"). Here is the problem (a little ...
2
votes
2answers
306 views

C# or JavaScript: Determining common prefix in strings [duplicate]

Possible Duplicate: Find common prefix of strings Let's say I have an array of strings. The array has at least two elements, and possibly more. Each string in the array has at least two ...
1
vote
1answer
229 views

Why F# core library does not offer a generic sequence slicing function?

Cutting sequence into batches of fixed length, making overlapping sliding data windows, getting each n-th item from a sequence - all these tasks can be solved using a single generic slicing function. ...
4
votes
2answers
726 views

Problem calculating overlapping date ranges

I have a problem trying to work out the correct algorithm to calculate a set of date ranges. Basically I have a list of unordered date ranges (List containing arrays of start and end times) and I ...
7
votes
3answers
481 views

Algorithm for computing the plausibility of a function / Monte Carlo Method

I am writing a program that attempts to duplicate the algorithm discussed at the beginning of this article, http://www-stat.stanford.edu/~cgates/PERSI/papers/MCMCRev.pdf F is a function from char to ...
0
votes
2answers
111 views

Calculate a delta from list

I have this list: ADD X ADD Y REMOVE Z ADD X NO ACTION Y I need of this results: ADD X NO ACTION Y REMOVE Z The rules to calculate the delta are these: I have 3 action (ADD, REMOVE, NO ...
1
vote
3answers
679 views

how to create a list of tuples from each value within a set of lists

I'd like to create a list of tuples from each value within a set of lists. The set of lists can be open, but for the example I have the following three lists of Strings. L1: (one, two three) L2: (a, ...
25
votes
4answers
604 views

Is (pure) functional programming antagonistic with “algorithm classics”?

The classic algorithm books (TAOCP, CLR) (and not so classic ones, such as the fxtbook)are full of imperative algorithms. This is most obvious with algorithms whose implementation is heavily based ...
1
vote
2answers
399 views

Immutable / persistent list in Java

As a pet project I'm trying to implement an immutable list data structure in Java while minimizing copies as much as possible; I know about Google Collections but this is not what I'm after since list ...
6
votes
3answers
267 views

Can I always convert mutable-only algorithms to single-assignment and still be efficient?

The Context The context of this question is that I want to play around with Gene Expression Programming (GEP), a form of evolutionary algorithm, using Erlang. GEP makes use of a string based DSL ...
0
votes
1answer
179 views

Subset calculation in infinite/(dynamic) Universe set of alphanummeric elements

Given a infinite set/Universe (U) of alphanumeric elements and a family (F) of subsets of (U). Calculate/Group all related subsets in (F), where all elements are covered or less, see example. The ...
8
votes
1answer
258 views

Data-structural bootstrapping examples?

I recently read Okasaki and Brodal's paper "Optimal Purely Functional Priority Queues," which describes a fast priority queue based on data-structural bootstrapping, in which a simple and inefficient ...
13
votes
1answer
553 views

Five Digit Primes in a 5x5 Grid

|---|---|---|---|---| | 1 | 1 | 3 | 5 | 1 | |---|---|---|---|---| | 3 | 3 | 2 | 0 | 3 | |---|---|---|---|---| | 3 | 0 | 3 | 2 | 3 | |---|---|---|---|---| | 1 | 4 | 0 | 3 | 3 | |---|---|---|---|---| | ...
2
votes
2answers
307 views

Algorithm to check quadtree horizontal symmetry?

data (Eq a, Show a) => QT a = C a | Q (QT a) (QT a) (QT a) (QT a) deriving (Eq, Show) Giving the definition as above, write a predicate to check if a given image (coded as a quadtree) is ...

1 2