Когда я писал эту функцию, я знал, что не получу оптимизацию хвостового вызова. Я до сих пор не нашел хорошего способа справиться с этим и надеялся, что кто-то еще может предложить предложения.
У меня есть дерево:
type Heap<'a> =
| E
| T of int * 'a * Heap<'a> * Heap<'a>
И я хочу посчитать, сколько узлов в нем:
let count h =
let rec count' h acc =
match h with
| E -> 0 + acc
| T(_, value, leftChild, rightChild) ->
let acc = 1 + acc
(count' leftChild acc) + (count' rightChild acc)
count' h 0
Это не оптимизировано из-за добавления подсчетов для дочерних узлов. Любая идея, как сделать что-то подобное, если дерево имеет 1 миллион узлов?
Спасибо, Дерек
Вот реализация count с использованием CPS. Это все еще взорвало стек.
let count h =
let rec count' h acc cont =
match h with
| E -> cont (1 + acc)
| T(_,_,left,right) ->
let f = (fun lc -> count' right lc cont)
count' left acc f
count' h 0 (fun (x: int) -> x)
Может, мне удастся придумать какой-нибудь способ разбить дерево на достаточное количество частей, чтобы я мог сосчитать их, не взорвав стек?
Кто-то спросил о коде, который генерирует дерево. Это ниже.
member this.ParallelHeaps threads =
let rand = new Random()
let maxVal = 1000000
let rec heaper i h =
if i < 1 then
h
else
let heap = LeftistHeap.insert (rand.Next(100,2 * maxVal)) h
heaper (i - 1) heap
let heaps = Array.create threads E
printfn "Creating heap of %d elements, with %d threads" maxVal threads
let startTime = DateTime.Now
seq { for i in 0 .. (threads - 1) ->
async { Array.set heaps i (heaper (maxVal / threads) E) }}
|> Async.Parallel
|> Async.RunSynchronously
|> ignore
printfn "Creating %d sub-heaps took %f milliseconds" threads (DateTime.Now - startTime).TotalMilliseconds
let startTime = DateTime.Now
Array.length heaps |> should_ equal threads <| "The size of the heaps array should match the number of threads to process the heaps"
let rec reMerge i h =
match i with
| -1 -> h
| _ ->
printfn "heap[%d].count = %d" i (LeftistHeap.count heaps.[i])
LeftistHeap.merge heaps.[i] (reMerge (i-1) h)
let heap = reMerge (threads-1) E
printfn "Merging %d heaps took %f milliseconds" threads (DateTime.Now - startTime).TotalMilliseconds
printfn "heap min: %d" (LeftistHeap.findMin heap)
LeftistHeap.count heap |> should_ equal maxVal <| "The count of the reMerged heap should equal maxVal"