Tagged Questions
2
votes
2answers
85 views
What happens underneath append function?
I got an implementation for append function in OCaml, but it seems confused to me
let rec append = function
| [] -> fun y -> y
| h :: t -> fun y -> h :: (append t y)
What is the purpose ...
5
votes
3answers
102 views
Pattern matching functions in OCaml
Can everyone explain to me this piece of code ?
let safe_division n = function
| 0 -> failwith "divide by 0"
| m -> n / m
When I excute safeDiv 3 0 , what is the m and n in this case ?
In ...
1
vote
1answer
76 views
How to used Cons operator?
Basically the function will take one parameter as a character, number and check whether it is inside the List or not ?
let rec (member: a -> List a -> Bool) x =
| [] -> False
| Cons y ys ...
-5
votes
0answers
114 views
The right step to begin: Scala vs OCaml [closed]
This question could seem stupid, 'couse i haven't so much experience in functional programming.
I was wondering which is the best language between OCaml and Scala.
I already done something in OCaml, ...
5
votes
2answers
100 views
How to properly debug OCaml code?
Can I know how an experienced OCaml developer debugs his code?
What I am doing is just using Printf.printf. It is too troublesome as I have to comment them all out when I need a clean output.
How ...
0
votes
1answer
44 views
Ocamlfind installed my own lib but still `Unbound module` when using my lib
My lib has two files: bson.ml and bson.mli.
I also have another test file which use let doc = Bson.make ();; etc to access the library and it is fine without any problem.
I also successfully build ...
1
vote
2answers
129 views
Why OCaml's threading is considered as `not enough`?
It seems many people are saying OCaml does not have a good capacity for concurrency and it is also not good for web server applications.
I am currently learning ocaml's manual. It seems that OCaml ...
2
votes
3answers
75 views
How to shorten this OCaml code?
I am just wondering how to shorten these code as I suspect it is too redundant
let get ename doc =
try Some (StringMap.find ename doc) with Not_found -> None;;
let get_double ename doc =
...
5
votes
2answers
68 views
Does `string` in OCaml support UTF-8?
Does the type string in OCaml support utf8?
Or what library I should use for utf8 string?
5
votes
4answers
80 views
What does `[< >]` mean in OCaml?
I have seen some source code having
let rec parse_document = parser
| [< len = parse_int32; st; >] ->
parse_list [] (ES.take_int32 len st)
| [< >] -> malformed ...
5
votes
1answer
76 views
Why is there a let in OCaml's List.map?
In OCaml 3.12.1, List.map is written as follows:
let rec map f = function
[] -> []
| a::l -> let r = f a in r :: map f l
I'd expect that last line to be written as | a::l -> f a :: ...
1
vote
1answer
63 views
How to implement counting sort (O(n)) using list in OCaml?
Counting sort uses array and can have O(n) performance if the numbers being sorted are within a known range.
But is it possible to implement counting sort using list only in OCaml?
My intuitive is ...
0
votes
2answers
65 views
ocaml bubble sort
My basic idea is to implement a bubble sort of type ('a list -> 'a list). I use variables which are sorted and result. If I change some of elements in the list, sorted becomes 1. Otherwise, sorted ...
2
votes
2answers
132 views
DFS and BFS for Graph in a **pure** functional way in OCaml
I am using Map to implement pure functional DFS and BFS for graph.
here is my code:
module IntMap = Map.Make(struct type t = int let compare = compare end);;
module IntSet = Set.Make(struct type t = ...
12
votes
2answers
183 views
η-expansion in a pure functional language
In OCaml, it is legal to have in .mli:
val f : 'a -> 'a
val g : 'a -> 'a
and .ml:
let f x = x
let g = f
Yet in F#, this is rejected:
eta_expand.ml(2,5): error FS0034: Module 'Eta_expand' ...
3
votes
2answers
56 views
Series of let definitions
I'm a beginner in OCaml, and i have a problem with series of let, like:
let x = myFun y in
let z = myFun x in
...
But, between the lets, i use Hashtbl.iter and other functions that returns unit. If ...
3
votes
1answer
54 views
How to use Map / define a type which actually is a Map in OCaml?
I am going to practicing using Map in Ocaml.
I found that the usage of Map is quite different from List, Array, etc.
I understand it is applying functor which I haven't learnt yet. but it is fine.
...
0
votes
1answer
68 views
Strange error in my implementation of in-place graph BFS in OCaml
I am implementing in-place graph BFS in OCaml.
here is my code:
type graph = {s : int list array;num_v:int;mutable num_e : int};;
let bfs u g p =
let marker = Array.make g.num_v false
in
let ...
3
votes
2answers
91 views
Will it be efficient if I create graph datastructure/algorithms using list in OCaml?
I begin to write graph related data structure and algorithms in OCaml now.
I am willing to try to write them in a functional way in OCaml, i.e., avoiding using array, mutable type, etc.
But if I ...
4
votes
1answer
65 views
OCaml: Mutable fields of records with multiple files
I'm working with multiple files, and i have a problem with one mutable field.
In file1.ml, i declared:
type mytype = {
mutable numbers : int list;
}
So, in file2.ml, i have elements of type ...
1
vote
1answer
95 views
OCaml: How to add an element in a list without returns a list?
What's the best way to insert an element in a list without returns a list with the element? Because these operator below returns a list:
element :: lst
I want the unit return, like Hashtbl.add ...
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.
...
1
vote
2answers
72 views
Can I do `type 'a entry = string * 'a * 'a entry;;` in OCaml?
It seems I can't.
I wanna understand why I can't.
It is sure that I can do type 'a entry = Empty | Value of string * 'a * 'a entry;;, so if I want to recursively define a type, I only can go the ...
3
votes
1answer
75 views
How was `val hash : 'a -> int` was implemented in OCaml?
In OCaml, Hashtbl can hash any thing to an int
Hashtbl.hash x associates a nonnegative integer to any value of any type. It is guaranteed that if x = y or Pervasives.compare x y = 0, then hash x = ...
0
votes
1answer
57 views
How to deal with this error?
I'm dealing with very long lists, and large trees.
Sometimes I would find this error:
surgery a;;
Characters 8-9:
surgery a;;
^
Error: This expression has type int t/1044
but an ...
0
votes
2answers
69 views
Defining a variable within a function in OCaml
I've got a function numofday that I'd like to apply to two variables in another function that will return the number of days between the two given days, the functions themselves don't really matter, I ...
1
vote
3answers
118 views
Why `list` in OCaml does not maintain a pointer to the last element?
When we do l1 @ l2, it is O(length(l1)) because we have to go through l1 and connect l1 and l2.
So my question is that why the implementation does not maintain a last_element pointer?
I ask this ...
2
votes
1answer
83 views
Is there a better way to construct such a priority queue?
I have implemented a priority queue, it works well. What follows is my type definition.
type 'a t = | Leaf of ('a -> 'a -> int)
| Node of 'a * 'a t * 'a t * ('a -> 'a -> int)
...
4
votes
2answers
112 views
Why wasn't OCaml List.fold_right implemented as tail-recursive?
List.fold_right is not tail-recursive as indicated here http://caml.inria.fr/pub/docs/manual-ocaml/libref/List.html
My question is why List.fold_right was not implemented as tail-recursive?
I think ...
2
votes
1answer
68 views
How to write `result?1:0` in OCaml?
in java we can write result?1:0. It is a short way to get a value depending on the result bool.
How can I write such a thing in OCaml?
1
vote
1answer
69 views
Function to return a day n days ahead of given day
So I'm looking to build a function that takes an int and a day (of my day type below) and returns the day n days ahead of the given day.
I have type day defined as
type day = Sun | Mon | Tues | Wed ...
1
vote
1answer
101 views
Deletion in Binary Search Tree in OCaml
i am constructing the operations of binary search tree in OCaml.
type ('a, 'b) bst =
| Node of 'a * 'b * ('a, 'b) bst * ('a, 'b) bst
| Leaf;;
let rec insert k v = function
| Leaf -> Node ...
1
vote
3answers
69 views
How can I create a union type for a tree, where it takes 'a type of key and 'b type of value in OCaml?
I wish to create a bst (binary search tree) union type.
It is either leaf or node. For node, it takes 'a key and 'b value.
I did this:
type 'a*'b bst =
| Node of 'a * 'b * ('a*'b) bst * ('a*'b) ...
1
vote
1answer
95 views
How should I sort 100 Billion items in OCaml using only immutable things?
ok, let's say we have 100 billion items that need to be sorted.
Our memory is big enough for these items.
Can we still use List.sort (Merge sort) to sort them?
My concerns have two parts:
Will ...
1
vote
2answers
76 views
How to change all the elements of a list that are equal?
How can I replace all elements of a list which are equal to c to t in OCaml?
I have tried List.filter without success:
List.fold_right (fun c -> t) (List.filter c myLst) []
Does the List module ...
1
vote
4answers
98 views
OCaml recursive function to apply a function n times
I want to create a function of type int -> ('a -> 'a) -> 'a -> 'a in OCaml that takes an int n (non-neg) and a function f 'a -> 'a and an argument a of type 'a. f should be called on a n times.
I've ...
0
votes
1answer
63 views
Defining a function with a function as an argument
I am currently trying to define a function of type ('a -> 'a) -> 'a -> 'a which takes a function of type 'a -> 'a and an argument of type 'a and calls the function twice on the argument. I'm ...
1
vote
1answer
127 views
How to implement a binary heap using list in OCaml?
I am implementing a binary heap using list in OCaml, just to sharpen my OCaml skills.
I feel it very difficult using list and after struggling for 2 days, I have to come here for suggestions and ...
2
votes
1answer
115 views
Installed ocamlfind (findlib), but never can find any extra package in Mac
Just got a new Mac, Mountain Lion and I wish to make all ocaml related stuff set up.
I used the following commands:
opam switch 4.00.1
opam install findlib
opam install batteries
All are ...
0
votes
3answers
95 views
stack_overflow in `list-based` quicksort in OCaml
Here is my implementation of list-based quicksort:
let partition pivot l =
let rec p left right = function
| [] -> (left, right)
| hd::tl ->
let c = compare pivot hd
in ...
3
votes
2answers
132 views
How should I organise my OCaml project?
I know this question is quite general and I even don't know how to better ask.
I don't have much experiences in C and I just wish I can do similar thing in OCaml as in Java.
For example, in Java, ...
2
votes
1answer
91 views
How to turn on `exception stack trace` for OCaml `Toplevel`?
in Toplevel, how to turn on the stack trace for exceptions?
simple question, don't know how to ask more in details.
2
votes
3answers
137 views
Should I implement PriorityQueue (Heap) on List in OCaml?
I understand that priorityQueue is perfect on Array as its nature is in place.
Should I implement PriorityQueue (Heap) on List in OCaml?
If I do it on List, then I have to remove the in-place thing ...
4
votes
3answers
238 views
Is anyone use SML or OCaml for building real world GUI?
After looking at some OCaml graphics related projects it seems that no one using it for building GUI.
why ?
is there any modern alternatives to those outdated libraries ?
1
vote
2answers
85 views
Do I need to call Random.self_init in OCaml?
First of all, I don't care about seed in this question.
My question is that whether I should call Random.self_init every time I want a fresh start in my function?
let shuffle l =
Random.self_init ...
1
vote
2answers
102 views
Any better way to implement quicksort in ocaml?
I implemented quicksort in OCaml. Here is the code:
let shuffle d =
let nd = List.map (fun c -> (Random.bits (), c)) d in
let sond = List.sort compare nd in
List.map snd sond;;
let ...
3
votes
2answers
126 views
How to shuffle list in O(n) in OCaml?
It is not hard to shuffle an array in O(n), with in place swapping,
How to do it for list in OCaml, with O(n)?
Requirement:
No array or in place usage
Consider this as an interview question
2
votes
4answers
251 views
Parameter names of a function using a functional language such as F#
I have read a book called Clean code. One of the strongest messages that I took from the book is that the code must be readable. I do not understand why functional languages such as F# do not include ...
0
votes
2answers
142 views
Using continuation / CPS to implement tail-recursive MergeSort in OCaml
I am trying to implement a tail-recursive MergeSort in OCaml.
Since Mergesort naturally is not tail-recursive, so I am using CPS to implement it.
Also my implementation is inspired by Tail-recursive ...
2
votes
2answers
90 views
Why did I still get stackoverflow even if I used tail-recursion in OCaml?
I wrote a function which generates a list of randomized ints in OCaml.
let create_shuffled_int_list n =
Random.self_init;
let rec create n' acc =
if n' = 0 then acc
else
create ...




