1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
|
// (c) Microsoft Corporation 2005-2009.
namespace Microsoft.FSharp.Collections.Tagged
#nowarn "51"
#nowarn "69" // interface implementations in augmentations
#nowarn "60" // override implementations in augmentations
open System
open System.Collections.Generic
open Microsoft.FSharp.Collections
[<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>]
[<NoEquality; NoComparison>]
type SetTree<'T> =
| SetEmpty // height = 0
| SetNode of 'T * SetTree<'T> * SetTree<'T> * int // height = int
#if ONE
| SetOne of 'T // height = 1
#endif
// OPTIMIZATION: store SetNode(k,SetEmpty,SetEmpty,1) ---> SetOne(k)
// CONSIDER: SetTree<'T> = SetEmpty | SetNode of 'T * SetTree<'T> * SetTree<'T> * int
// with SetOne = SetNode of (x,null,null,1)
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
module SetTree =
let empty = SetEmpty
let height t =
match t with
| SetEmpty -> 0
#if ONE
| SetOne _ -> 1
#endif
| SetNode (_,_,_,h) -> h
#if CHECKED
let rec checkInvariant t =
// A good sanity check, loss of balance can hit perf
match t with
| SetEmpty -> true
| SetOne _ -> true
| SetNode (k,t1,t2,h) ->
let h1 = height t1 in
let h2 = height t2 in
(-2 <= (h1 - h2) && (h1 - h2) <= 2) && checkInvariant t1 && checkInvariant t2
#else
let inline SetOne(x) = SetNode(x,SetEmpty,SetEmpty,1)
#endif
let tolerance = 2
let mk l hl k r hr =
#if ONE
if hl = 0 && hr = 0 then SetOne (k)
else
#endif
let m = if hl < hr then hr else hl
SetNode(k,l,r,m+1)
let rebalance t1 k t2 =
let t1h = height t1
let t2h = height t2
if t2h > t1h + tolerance then // right is heavier than left
match t2 with
| SetNode(t2k,t2l,t2r,_) ->
// one of the nodes must have height > height t1 + 1
let t2lh = height t2l
if t2lh > t1h + 1 then // balance left: combination
match t2l with
| SetNode(t2lk,t2ll,t2lr,_) ->
let l = mk t1 t1h k t2ll (height t2ll)
let r = mk t2lr (height t2lr) t2k t2r (height t2r)
mk l (height l) t2lk r (height r)
| _ -> failwith "rebalance"
else // rotate left
let l = mk t1 t1h k t2l t2lh
mk l (height l) t2k t2r (height t2r)
| _ -> failwith "rebalance"
else
if t1h > t2h + tolerance then // left is heavier than right
match t1 with
| SetNode(t1k,t1l,t1r,_) ->
// one of the nodes must have height > height t2 + 1
let t1rh = height t1r
if t1rh > t2h + 1 then
// balance right: combination
match t1r with
| SetNode(t1rk,t1rl,t1rr,_) ->
let l = mk t1l (height t1l) t1k t1rl (height t1rl)
let r = mk t1rr (height t1rr) k t2 t2h
mk l (height l) t1rk r (height r)
| _ -> failwith "rebalance"
else
let r = mk t1r t1rh k t2 t2h
mk t1l (height t1l) t1k r (height r)
| _ -> failwith "rebalance"
else mk t1 t1h k t2 t2h
let rec add (comparer: IComparer<'T>) k t =
match t with
| SetNode (k2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then rebalance (add comparer k l) k2 r
elif c = 0 then t
else rebalance l k2 (add comparer k r)
#if ONE
| SetOne(k2) ->
// nb. no check for rebalance needed for small trees, also be sure to reuse node already allocated
let c = comparer.Compare(k,k2)
if c < 0 then SetNode (k,SetEmpty,t,2)
elif c = 0 then t
else SetNode (k,t,SetEmpty,2)
#endif
| SetEmpty -> SetOne(k)
let rec balance comparer t1 k t2 =
// Given t1 < k < t2 where t1 and t2 are "balanced",
// return a balanced tree for <t1,k,t2>.
// Recall: balance means subtrees heights differ by at most "tolerance"
match t1,t2 with
| SetEmpty,t2 -> add comparer k t2 // drop t1 = empty
| t1,SetEmpty -> add comparer k t1 // drop t2 = empty
#if ONE
| SetOne k1,t2 -> add comparer k (add comparer k1 t2)
| t1,SetOne k2 -> add comparer k (add comparer k2 t1)
#endif
| SetNode(k1,t11,t12,t1h),SetNode(k2,t21,t22,t2h) ->
// Have: (t11 < k1 < t12) < k < (t21 < k2 < t22)
// Either (a) h1,h2 differ by at most 2 - no rebalance needed.
// (b) h1 too small, i.e. h1+2 < h2
// (c) h2 too small, i.e. h2+2 < h1
if t1h+tolerance < t2h then
// case: b, h1 too small
// push t1 into low side of t2, may increase height by 1 so rebalance
rebalance (balance comparer t1 k t21) k2 t22
elif t2h+tolerance < t1h then
// case: c, h2 too small
// push t2 into high side of t1, may increase height by 1 so rebalance
rebalance t11 k1 (balance comparer t12 k t2)
else
// case: a, h1 and h2 meet balance requirement
mk t1 t1h k t2 t2h
let rec split (comparer : IComparer<'T>) pivot t =
// Given a pivot and a set t
// Return { x in t s.t. x < pivot }, pivot in t? , { x in t s.t. x > pivot }
match t with
| SetNode(k1,t11,t12,_) ->
let c = comparer.Compare(pivot,k1)
if c < 0 then // pivot t1
let t11_lo,havePivot,t11_hi = split comparer pivot t11
t11_lo,havePivot,balance comparer t11_hi k1 t12
elif c = 0 then // pivot is k1
t11,true,t12
else // pivot t2
let t12_lo,havePivot,t12_hi = split comparer pivot t12
balance comparer t11 k1 t12_lo,havePivot,t12_hi
#if ONE
| SetOne k1 ->
let c = comparer.Compare(k1,pivot)
if c < 0 then t ,false,SetEmpty // singleton under pivot
elif c = 0 then SetEmpty,true ,SetEmpty // singleton is pivot
else SetEmpty,false,t // singleton over pivot
#endif
| SetEmpty ->
SetEmpty,false,SetEmpty
let rec spliceOutSuccessor t =
match t with
| SetEmpty -> failwith "internal error: Map.splice_out_succ_or_pred"
#if ONE
| SetOne (k2) -> k2,empty
#endif
| SetNode (k2,l,r,_) ->
match l with
| SetEmpty -> k2,r
| _ -> let k3,l' = spliceOutSuccessor l in k3,mk l' (height l') k2 r (height r)
let rec remove (comparer: IComparer<'T>) k t =
match t with
| SetEmpty -> t
#if ONE
| SetOne (k2) ->
let c = comparer.Compare(k,k2)
if c = 0 then empty
else t
#endif
| SetNode (k2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then rebalance (remove comparer k l) k2 r
elif c = 0 then
match l,r with
| SetEmpty,_ -> r
| _,SetEmpty -> l
| _ ->
let sk,r' = spliceOutSuccessor r
mk l (height l) sk r' (height r')
else rebalance l k2 (remove comparer k r)
let rec contains (comparer: IComparer<'T>) k t =
match t with
| SetNode(k2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then contains comparer k l
elif c = 0 then true
else contains comparer k r
#if ONE
| SetOne(k2) -> (comparer.Compare(k,k2) = 0)
#endif
| SetEmpty -> false
let rec iter f t =
match t with
| SetNode(k2,l,r,_) -> iter f l; f k2; iter f r
#if ONE
| SetOne(k2) -> f k2
#endif
| SetEmpty -> ()
// Fold, left-to-right.
//
// NOTE: This differs from the behaviour of Map.fold which folds right-to-left.
let rec fold f m x =
match m with
| SetNode(k,l,r,_) -> fold f r (f k (fold f l x))
#if ONE
| SetOne(k) -> f k x
#endif
| SetEmpty -> x
let rec forAll f m =
match m with
| SetNode(k2,l,r,_) -> f k2 && forAll f l && forAll f r
#if ONE
| SetOne(k2) -> f k2
#endif
| SetEmpty -> true
let rec exists f m =
match m with
| SetNode(k2,l,r,_) -> f k2 || exists f l || exists f r
#if ONE
| SetOne(k2) -> f k2
#endif
| SetEmpty -> false
let isEmpty m = match m with | SetEmpty -> true | _ -> false
let subset comparer a b = forAll (fun x -> contains comparer x b) a
let rec elementsAux m acc =
match m with
| SetNode(k2,l,r,_) -> k2 :: (elementsAux l (elementsAux r acc))
#if ONE
| SetOne(k2) -> k2 :: acc
#endif
| SetEmpty -> acc
let elements a = elementsAux a []
let rec filterAux comparer f s acc =
match s with
| SetNode(k,l,r,_) ->
let acc = if f k then add comparer k acc else acc
filterAux comparer f l (filterAux comparer f r acc)
#if ONE
| SetOne(k) -> if f k then add comparer k acc else acc
#endif
| SetEmpty -> acc
let filter comparer f s = filterAux comparer f s empty
let rec diffAux comparer m acc =
match m with
| SetNode(k,l,r,_) -> diffAux comparer l (diffAux comparer r (remove comparer k acc))
#if ONE
| SetOne(k) -> remove comparer k acc
#endif
| SetEmpty -> acc
let diff comparer a b = diffAux comparer b a
let rec countAux s acc =
match s with
| SetNode(_,l,r,_) -> countAux l (countAux r (acc+1))
#if ONE
| SetOne(k) -> acc+1
#endif
| SetEmpty -> acc
let count s = countAux s 0
let rec union comparer t1 t2 =
// Perf: tried bruteForce for low heights, but nothing significant
match t1,t2 with
| SetNode(k1,t11,t12,h1),SetNode(k2,t21,t22,h2) -> // (t11 < k < t12) AND (t21 < k2 < t22)
// Divide and Quonquer:
// Suppose t1 is largest.
// Split t2 using pivot k1 into lo and hi.
// Union disjoint subproblems and then combine.
if h1 > h2 then
let lo,_,hi = split comparer k1 t2 in
balance comparer (union comparer t11 lo) k1 (union comparer t12 hi)
else
let lo,_,hi = split comparer k2 t1 in
balance comparer (union comparer t21 lo) k2 (union comparer t22 hi)
| SetEmpty,t -> t
| t,SetEmpty -> t
#if ONE
| SetOne k1,t2 -> add comparer k1 t2
| t1,SetOne k2 -> add comparer k2 t1
#endif
let rec intersectionAux comparer b m acc =
match m with
| SetNode(k,l,r,_) ->
let acc = intersectionAux comparer b r acc
let acc = if contains comparer k b then add comparer k acc else acc
intersectionAux comparer b l acc
#if ONE
| SetOne(k) ->
if contains comparer k b then add comparer k acc else acc
#endif
| SetEmpty -> acc
let intersection comparer a b = intersectionAux comparer b a empty
let partition1 comparer f k (acc1,acc2) =
if f k then (add comparer k acc1,acc2)
else (acc1,add comparer k acc2)
let rec partitionAux comparer f s acc =
match s with
| SetNode(k,l,r,_) ->
let acc = partitionAux comparer f r acc
let acc = partition1 comparer f k acc
partitionAux comparer f l acc
#if ONE
| SetOne(k) -> partition1 comparer f k acc
#endif
| SetEmpty -> acc
let partition comparer f s = partitionAux comparer f s (empty,empty)
// It's easier to get many less-important algorithms right using this active pattern
let (|MatchSetNode|MatchSetEmpty|) s =
match s with
| SetNode(k2,l,r,_) -> MatchSetNode(k2,l,r)
#if ONE
| SetOne(k2) -> MatchSetNode(k2,SetEmpty,SetEmpty)
#endif
| SetEmpty -> MatchSetEmpty
let rec nextElemCont (comparer: IComparer<'T>) k s cont =
match s with
| MatchSetNode(k2,l,r) ->
let c = comparer.Compare(k,k2)
if c < 0 then nextElemCont comparer k l (function None -> cont(Some(k2)) | res -> res)
elif c = 0 then cont(minimumElementOpt r)
else nextElemCont comparer k r cont
| MatchSetEmpty -> cont(None)
and nextElem comparer k s = nextElemCont comparer k s (fun res -> res)
and prevElemCont (comparer: IComparer<'T>) k s cont =
match s with
| MatchSetNode(k2,l,r) ->
let c = comparer.Compare(k,k2)
if c > 0 then prevElemCont comparer k r (function None -> cont(Some(k2)) | res -> res)
elif c = 0 then cont(maximumElementOpt r)
else prevElemCont comparer k l cont
| MatchSetEmpty -> cont(None)
and prevElem comparer k s = prevElemCont comparer k s (fun res -> res)
and minimumElementAux s n =
match s with
| SetNode(k,l,_,_) -> minimumElementAux l k
#if ONE
| SetOne(k) -> k
#endif
| SetEmpty -> n
and minimumElementOpt s =
match s with
| SetNode(k,l,_,_) -> Some(minimumElementAux l k)
#if ONE
| SetOne(k) -> Some k
#endif
| SetEmpty -> None
and maximumElementAux s n =
match s with
| SetNode(k,_,r,_) -> maximumElementAux r k
#if ONE
| SetOne(k) -> k
#endif
| SetEmpty -> n
and maximumElementOpt s =
match s with
| SetNode(k,_,r,_) -> Some(maximumElementAux r k)
#if ONE
| SetOne(k) -> Some(k)
#endif
| SetEmpty -> None
let minimumElement s =
match minimumElementOpt s with
| Some(k) -> k
| None -> failwith "minimumElement"
let maximumElement s =
match maximumElementOpt s with
| Some(k) -> k
| None -> failwith "maximumElement"
//--------------------------------------------------------------------------
// Imperative left-to-right iterators.
//--------------------------------------------------------------------------
type SetIterator<'T>(s:SetTree<'T>) =
// collapseLHS:
// a) Always returns either [] or a list starting with SetOne.
// b) The "fringe" of the set stack is unchanged.
let rec collapseLHS stack =
match stack with
| [] -> []
| SetEmpty :: rest -> collapseLHS rest
#if ONE
| SetOne k :: rest -> stack
#else
| SetNode(_,SetEmpty,SetEmpty,_) :: _ -> stack
#endif
| SetNode(k,l,r,_) :: rest -> collapseLHS (l :: SetOne k :: r :: rest)
// invariant: always collapseLHS result
let mutable stack = collapseLHS [s]
// true when MoveNext has been called
let mutable started = false
let notStarted() = raise (new System.InvalidOperationException("Enumeration has not started. Call MoveNext."))
let alreadyFinished() = raise (new System.InvalidOperationException("Enumeration already finished."))
member i.Current =
if started then
match stack with
#if ONE
| SetOne k :: _ -> k
#else
| SetNode( k,_,_,_) :: _ -> k
#endif
| [] -> alreadyFinished()
| _ -> failwith "Please report error: Set iterator, unexpected stack for current"
else
notStarted()
member i.MoveNext() =
if started then
match stack with
#if ONE
| SetOne _ :: rest ->
#else
| SetNode _ :: rest ->
#endif
stack <- collapseLHS rest;
not stack.IsEmpty
| [] -> false
| _ -> failwith "Please report error: Set iterator, unexpected stack for moveNext"
else
started <- true; // The first call to MoveNext "starts" the enumeration.
not stack.IsEmpty
let toSeq s =
let i = ref (SetIterator s)
{ new IEnumerator<_> with
member __.Current = (!i).Current
interface System.Collections.IEnumerator with
member __.Current = box (!i).Current
member __.MoveNext() = (!i).MoveNext()
member __.Reset() = i := SetIterator s
interface System.IDisposable with
member __.Dispose() = () }
//--------------------------------------------------------------------------
// Set comparison. This can be expensive.
//--------------------------------------------------------------------------
let rec compareStacks (comparer: IComparer<'T>) l1 l2 =
match l1,l2 with
| [],[] -> 0
| [],_ -> -1
| _ ,[] -> 1
| (SetEmpty _ :: t1),(SetEmpty :: t2) -> compareStacks comparer t1 t2
#if ONE
| (SetOne(n1k) :: t1),(SetOne(n2k) :: t2) ->
let c = comparer.Compare(n1k,n2k)
if c <> 0 then c else compareStacks comparer t1 t2
| (SetOne(n1k) :: t1),(SetNode(n2k,SetEmpty,n2r,_) :: t2) ->
let c = comparer.Compare(n1k,n2k)
if c <> 0 then c else compareStacks comparer (empty :: t1) (n2r :: t2)
| (SetNode(n1k,(SetEmpty as emp),n1r,_) :: t1),(SetOne(n2k) :: t2) ->
let c = comparer.Compare(n1k,n2k)
if c <> 0 then c else compareStacks comparer (n1r :: t1) (emp :: t2)
#endif
| (SetNode(n1k,SetEmpty,n1r,_) :: t1),(SetNode(n2k,SetEmpty,n2r,_) :: t2) ->
let c = comparer.Compare(n1k,n2k)
if c <> 0 then c else compareStacks comparer (n1r :: t1) (n2r :: t2)
#if ONE
| (SetOne(n1k) :: t1),_ ->
compareStacks comparer (empty :: SetOne(n1k) :: t1) l2
#endif
| (SetNode(n1k,n1l,n1r,_) :: t1),_ ->
compareStacks comparer (n1l :: SetNode(n1k,empty,n1r,0) :: t1) l2
#if ONE
| _,(SetOne(n2k) :: t2) ->
compareStacks comparer l1 (empty :: SetOne(n2k) :: t2)
#endif
| _,(SetNode(n2k,n2l,n2r,_) :: t2) ->
compareStacks comparer l1 (n2l :: SetNode(n2k,empty,n2r,0) :: t2)
let compare comparer s1 s2 =
match s1,s2 with
| SetEmpty,SetEmpty -> 0
| SetEmpty,_ -> -1
| _,SetEmpty -> 1
| _ -> compareStacks comparer [s1] [s2]
let choose s = minimumElement s
let toList s =
let rec loop m x =
match m with
| SetNode(k,l,r,_) -> loop l (k :: (loop r x))
#if ONE
| SetOne(k) -> k :: x
#endif
| SetEmpty -> x
loop s []
let copyToArray s (arr: _[]) i =
let j = ref i
iter (fun x -> arr.[!j] <- x; j := !j + 1) s
let toArray s =
let n = (count s)
let res = Array.zeroCreate n
copyToArray s res 0;
res
let rec mkFromEnumerator comparer acc (e : IEnumerator<_>) =
if e.MoveNext() then
mkFromEnumerator comparer (add comparer e.Current acc) e
else acc
let ofSeq comparer (c : IEnumerable<_>) =
use ie = c.GetEnumerator()
mkFromEnumerator comparer empty ie
let ofArray comparer l = Array.fold (fun acc k -> add comparer k acc) empty l
#if FX_NO_DEBUG_DISPLAYS
#else
[<System.Diagnostics.DebuggerDisplay ("Count = {Count}")>]
#endif
[<Sealed>]
type Set<'T,'ComparerTag> when 'ComparerTag :> IComparer<'T>(comparer: IComparer<'T>, tree: SetTree<'T>) =
static let refresh (s:Set<_,_>) t = Set<_,_>(comparer=s.ComparerUntyped, tree=t)
member s.Tree = tree
member s.ComparerUntyped : IComparer<'T> = comparer
member s.Comparer = (comparer :?> 'ComparerTag)
static member Empty(comparer: 'ComparerTag) : Set<'T,'ComparerTag> =
Set<_,_>(comparer=comparer, tree=SetTree.empty)
member s.Add(x) : Set<'T,'ComparerTag> = refresh s (SetTree.add comparer x tree)
member s.Remove(x) : Set<'T,'ComparerTag> = refresh s (SetTree.remove comparer x tree)
member s.Count = SetTree.count tree
member s.Contains(x) = SetTree.contains comparer x tree
member s.Iterate(x) = SetTree.iter x tree
member s.Fold f x = SetTree.fold f tree x
#if CHECKED
member s.CheckBalanceInvariant = checkInvariant tree // diagnostics...
#endif
member s.IsEmpty = SetTree.isEmpty tree
member s.Partition f : Set<'T,'ComparerTag> * Set<'T,'ComparerTag> =
match tree with
| SetEmpty -> s,s
| _ ->
let t1,t2 = SetTree.partition comparer f tree
refresh s t1, refresh s t2
member s.Filter f : Set<'T,'ComparerTag> =
match tree with
| SetEmpty -> s
| _ -> SetTree.filter comparer f tree |> refresh s
member s.Exists f = SetTree.exists f tree
member s.ForAll f = SetTree.forAll f tree
static member (-) ((a: Set<'T,'ComparerTag>),(b: Set<'T,'ComparerTag>)) = Set<_,_>.Difference(a,b)
static member (+) ((a: Set<'T,'ComparerTag>),(b: Set<'T,'ComparerTag>)) = Set<_,_>.Union(a,b)
static member Intersection((a: Set<'T,'ComparerTag>),(b: Set<'T,'ComparerTag>)) : Set<'T,'ComparerTag> =
match b.Tree with
| SetEmpty -> b (* A INTER 0 = 0 *)
| _ ->
match a.Tree with
| SetEmpty -> a (* 0 INTER B = 0 *)
| _ -> SetTree.intersection a.ComparerUntyped a.Tree b.Tree |> refresh a
static member Union(a: Set<'T,'ComparerTag>,b: Set<'T,'ComparerTag>) : Set<'T,'ComparerTag> =
match b.Tree with
| SetEmpty -> a (* A U 0 = A *)
| _ ->
match a.Tree with
| SetEmpty -> b (* 0 U B = B *)
| _ -> SetTree.union a.ComparerUntyped a.Tree b.Tree |> refresh a
static member Difference(a: Set<'T,'ComparerTag>,b: Set<'T,'ComparerTag>) : Set<'T,'ComparerTag> =
match a.Tree with
| SetEmpty -> a (* 0 - B = 0 *)
| _ ->
match b.Tree with
| SetEmpty -> a (* A - 0 = A *)
| _ -> SetTree.diff a.ComparerUntyped a.Tree b.Tree |> refresh a
static member Equality(a: Set<'T,'ComparerTag>,b: Set<'T,'ComparerTag>) =
(SetTree.compare a.ComparerUntyped a.Tree b.Tree = 0)
static member Compare(a: Set<'T,'ComparerTag>,b: Set<'T,'ComparerTag>) =
SetTree.compare a.ComparerUntyped a.Tree b.Tree
member s.Choose = SetTree.choose tree
member s.MinimumElement = SetTree.minimumElement tree
member s.MaximumElement = SetTree.maximumElement tree
member s.IsSubsetOf((y: Set<'T,'ComparerTag>)) = SetTree.subset comparer tree y.Tree
member s.IsSupersetOf((y: Set<'T,'ComparerTag>)) = SetTree.subset comparer y.Tree tree
member s.ToList () = SetTree.toList tree
member s.ToArray () = SetTree.toArray tree
override this.Equals(that) =
match that with
// Cast to the exact same type as this, otherwise not equal.
| :? Set<'T,'ComparerTag> as that -> ((this :> System.IComparable).CompareTo(that) = 0)
| _ -> false
interface System.IComparable with
// Cast s2 to the exact same type as s1, see 4884.
// It is not OK to cast s2 to seq<'T>, since different compares could permute the elements.
member s1.CompareTo(s2: obj) = SetTree.compare s1.ComparerUntyped s1.Tree ((s2 :?> Set<'T,'ComparerTag>).Tree)
member this.ComputeHashCode() =
let combineHash x y = (x <<< 1) + y + 631
let mutable res = 0
for x in this do
res <- combineHash res (Unchecked.hash x)
abs res
override this.GetHashCode() = this.ComputeHashCode()
interface ICollection<'T> with
member s.Add(x) = raise (new System.NotSupportedException("ReadOnlyCollection"))
member s.Clear() = raise (new System.NotSupportedException("ReadOnlyCollection"))
member s.Remove(x) = raise (new System.NotSupportedException("ReadOnlyCollection"))
member s.Contains(x) = SetTree.contains comparer x tree
member s.CopyTo(arr,i) = SetTree.copyToArray tree arr i
member s.IsReadOnly = true
member s.Count = SetTree.count tree
interface IEnumerable<'T> with
member s.GetEnumerator() = SetTree.toSeq tree
interface System.Collections.IEnumerable with
override s.GetEnumerator() = (SetTree.toSeq tree :> System.Collections.IEnumerator)
static member Singleton(comparer,x) : Set<'T,'ComparerTag> =
Set<_,_>.Empty(comparer).Add(x)
static member Create(comparer : 'ComparerTag,l : seq<'T>) : Set<'T,'ComparerTag> =
Set<_,_>(comparer=comparer, tree=SetTree.ofSeq comparer l)
[<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>]
[<NoEquality; NoComparison>]
type MapTree<'Key,'T> =
| MapEmpty
#if ONE
| MapOne of 'Key * 'T
#endif
// Note: performance rumour has it that the data held in this node should be
// exactly one cache line. It is currently ~7 words. Thus it might be better to
// move to a n-way tree.
| MapNode of 'Key * 'T * MapTree<'Key,'T> * MapTree<'Key,'T> * int
[<CompilationRepresentation(CompilationRepresentationFlags.ModuleSuffix)>]
module MapTree =
let empty = MapEmpty
let inline height x =
match x with
| MapEmpty -> 0
#if ONE
| MapOne _ -> 1
#endif
| MapNode(_,_,_,_,h) -> h
let isEmpty m =
match m with
| MapEmpty -> true
| _ -> false
let mk l k v r =
#if ONE
match l,r with
| MapEmpty,MapEmpty -> MapOne(k,v)
| _ ->
#endif
let hl = height l
let hr = height r
let m = if hl < hr then hr else hl
MapNode(k,v,l,r,m+1)
let rebalance t1 k v t2 =
let t1h = height t1
if height t2 > t1h + 2 then (* right is heavier than left *)
match t2 with
| MapNode(t2k,t2v,t2l,t2r,_) ->
(* one of the nodes must have height > height t1 + 1 *)
if height t2l > t1h + 1 then (* balance left: combination *)
match t2l with
| MapNode(t2lk,t2lv,t2ll,t2lr,_) ->
mk (mk t1 k v t2ll) t2lk t2lv (mk t2lr t2k t2v t2r)
| _ -> failwith "rebalance"
else (* rotate left *)
mk (mk t1 k v t2l) t2k t2v t2r
| _ -> failwith "rebalance"
else
let t2h = height t2
if t1h > t2h + 2 then (* left is heavier than right *)
match t1 with
| MapNode(t1k,t1v,t1l,t1r,_) ->
(* one of the nodes must have height > height t2 + 1 *)
if height t1r > t2h + 1 then
(* balance right: combination *)
match t1r with
| MapNode(t1rk,t1rv,t1rl,t1rr,_) ->
mk (mk t1l t1k t1v t1rl) t1rk t1rv (mk t1rr k v t2)
| _ -> failwith "rebalance"
else
mk t1l t1k t1v (mk t1r k v t2)
| _ -> failwith "rebalance"
else mk t1 k v t2
let rec sizeAux acc m =
match m with
| MapEmpty -> acc
#if ONE
| MapOne _ -> acc + 1
#endif
| MapNode(_,_,l,r,_) -> sizeAux (sizeAux (acc+1) l) r
#if ONE
#else
let MapOne(k,v) = MapNode(k,v,MapEmpty,MapEmpty,1)
#endif
let count x = sizeAux 0 x
let rec add (comparer: IComparer<'T>) k v m =
match m with
| MapEmpty -> MapOne(k,v)
#if ONE
| MapOne(k2,v2) ->
let c = comparer.Compare(k,k2)
if c < 0 then MapNode (k,v,MapEmpty,m,2)
elif c = 0 then MapOne(k,v)
else MapNode (k,v,m,MapEmpty,2)
#endif
| MapNode(k2,v2,l,r,h) ->
let c = comparer.Compare(k,k2)
if c < 0 then rebalance (add comparer k v l) k2 v2 r
elif c = 0 then MapNode(k,v,l,r,h)
else rebalance l k2 v2 (add comparer k v r)
let indexNotFound() = raise (new System.Collections.Generic.KeyNotFoundException("An index satisfying the predicate was not found in the collection"))
let rec find (comparer: IComparer<'T>) k m =
match m with
| MapEmpty -> indexNotFound()
#if ONE
| MapOne(k2,v2) ->
let c = comparer.Compare(k,k2)
if c = 0 then v2
else indexNotFound()
#endif
| MapNode(k2,v2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then find comparer k l
elif c = 0 then v2
else find comparer k r
let rec tryFind (comparer: IComparer<'T>) k m =
match m with
| MapEmpty -> None
#if ONE
| MapOne(k2,v2) ->
let c = comparer.Compare(k,k2)
if c = 0 then Some v2
else None
#endif
| MapNode(k2,v2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then tryFind comparer k l
elif c = 0 then Some v2
else tryFind comparer k r
let partition1 (comparer: IComparer<'T>) f k v (acc1,acc2) =
if f k v then (add comparer k v acc1,acc2) else (acc1,add comparer k v acc2)
let rec partitionAux (comparer: IComparer<'T>) f s acc =
match s with
| MapEmpty -> acc
#if ONE
| MapOne(k,v) -> partition1 comparer f k v acc
#endif
| MapNode(k,v,l,r,_) ->
let acc = partitionAux comparer f r acc
let acc = partition1 comparer f k v acc
partitionAux comparer f l acc
let partition (comparer: IComparer<'T>) f s = partitionAux comparer f s (empty,empty)
let filter1 (comparer: IComparer<'T>) f k v acc = if f k v then add comparer k v acc else acc
let rec filterAux (comparer: IComparer<'T>) f s acc =
match s with
| MapEmpty -> acc
#if ONE
| MapOne(k,v) -> filter1 comparer f k v acc
#endif
| MapNode(k,v,l,r,_) ->
let acc = filterAux comparer f l acc
let acc = filter1 comparer f k v acc
filterAux comparer f r acc
let filter (comparer: IComparer<'T>) f s = filterAux comparer f s empty
let rec spliceOutSuccessor m =
match m with
| MapEmpty -> failwith "internal error: Map.splice_out_succ_or_pred"
#if ONE
| MapOne(k2,v2) -> k2,v2,MapEmpty
#endif
| MapNode(k2,v2,l,r,_) ->
match l with
| MapEmpty -> k2,v2,r
| _ -> let k3,v3,l' = spliceOutSuccessor l in k3,v3,mk l' k2 v2 r
let rec remove (comparer: IComparer<'T>) k m =
match m with
| MapEmpty -> empty
#if ONE
| MapOne(k2,v2) ->
let c = comparer.Compare(k,k2)
if c = 0 then MapEmpty else m
#endif
| MapNode(k2,v2,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then rebalance (remove comparer k l) k2 v2 r
elif c = 0 then
match l,r with
| MapEmpty,_ -> r
| _,MapEmpty -> l
| _ ->
let sk,sv,r' = spliceOutSuccessor r
mk l sk sv r'
else rebalance l k2 v2 (remove comparer k r)
let rec containsKey (comparer: IComparer<'T>) k m =
match m with
| MapEmpty -> false
#if ONE
| MapOne(k2,v2) -> (comparer.Compare(k,k2) = 0)
#endif
| MapNode(k2,_,l,r,_) ->
let c = comparer.Compare(k,k2)
if c < 0 then containsKey comparer k l
else (c = 0 || containsKey comparer k r)
let rec iter f m =
match m with
| MapEmpty -> ()
#if ONE
| MapOne(k2,v2) -> f k2 v2
#endif
| MapNode(k2,v2,l,r,_) -> iter f l; f k2 v2; iter f r
let rec first f m =
match m with
| MapEmpty -> None
#if ONE
| MapOne(k2,v2) -> f k2 v2
#endif
| MapNode(k2,v2,l,r,_) ->
match first f l with
| Some _ as res -> res
| None ->
match f k2 v2 with
| Some _ as res -> res
| None -> first f r
let rec exists f m =
match m with
| MapEmpty -> false
#if ONE
| MapOne(k2,v2) -> f k2 v2
#endif
| MapNode(k2,v2,l,r,_) -> f k2 v2 || exists f l || exists f r
let rec forAll f m =
match m with
| MapEmpty -> true
#if ONE
| MapOne(k2,v2) -> f k2 v2
#endif
| MapNode(k2,v2,l,r,_) -> f k2 v2 && forAll f l && forAll f r
let rec map f m =
match m with
| MapEmpty -> empty
#if ONE
| MapOne(k,v) -> MapOne(k,f v)
#endif
| MapNode(k,v,l,r,h) -> let v2 = f v in MapNode(k,v2,map f l, map f r,h)
let rec mapi f m =
match m with
| MapEmpty -> empty
#if ONE
| MapOne(k,v) -> MapOne(k,f k v)
#endif
| MapNode(k,v,l,r,h) -> let v2 = f k v in MapNode(k,v2, mapi f l, mapi f r,h)
// Fold, right-to-left.
//
// NOTE: This differs from the behaviour of Set.fold which folds left-to-right.
let rec fold f m x =
match m with
| MapEmpty -> x
#if ONE
| MapOne(k,v) -> f k v x
#endif
| MapNode(k,v,l,r,_) -> fold f l (f k v (fold f r x))
let foldSection (comparer: IComparer<'T>) lo hi f m x =
let rec fold_from_to f m x =
match m with
| MapEmpty -> x
#if ONE
| MapOne(k,v) ->
let clo_k = comparer.Compare(lo,k)
let ck_hi = comparer.Compare(k,hi)
let x = if clo_k <= 0 && ck_hi <= 0 then f k v x else x
x
#endif
| MapNode(k,v,l,r,_) ->
let clo_k = comparer.Compare(lo,k)
let ck_hi = comparer.Compare(k,hi)
let x = if clo_k < 0 then fold_from_to f l x else x
let x = if clo_k <= 0 && ck_hi <= 0 then f k v x else x
let x = if ck_hi < 0 then fold_from_to f r x else x
x
if comparer.Compare(lo,hi) = 1 then x else fold_from_to f m x
let rec foldMap (comparer: IComparer<'T>) f m z acc =
match m with
| MapEmpty -> acc,z
#if ONE
| MapOne(k,v) ->
let v',z = f k v z
add comparer k v' acc,z
#endif
| MapNode(k,v,l,r,_) ->
let acc,z = foldMap comparer f r z acc
let v',z = f k v z
let acc = add comparer k v' acc
foldMap comparer f l z acc
let toList m = fold (fun k v acc -> (k,v) :: acc) m []
let toArray m = m |> toList |> Array.ofList
let ofList comparer l = List.fold (fun acc (k,v) -> add comparer k v acc) empty l
let rec mkFromEnumerator comparer acc (e : IEnumerator<_>) =
if e.MoveNext() then
let (x,y) = e.Current
mkFromEnumerator comparer (add comparer x y acc) e
else acc
let ofSeq comparer (c : seq<_>) =
use ie = c.GetEnumerator()
mkFromEnumerator comparer empty ie
let copyToArray s (arr: _[]) i =
let j = ref i
s |> iter (fun x y -> arr.[!j] <- KeyValuePair(x,y); j := !j + 1)
/// Imperative left-to-right iterators.
type MapIterator<'Key,'T>(s:MapTree<'Key,'T>) =
// collapseLHS:
// a) Always returns either [] or a list starting with SetOne.
// b) The "fringe" of the set stack is unchanged.
let rec collapseLHS stack =
match stack with
| [] -> []
| MapEmpty :: rest -> collapseLHS rest
#if ONE
| MapOne _ :: _ -> stack
#else
| (MapNode(_,_,MapEmpty,MapEmpty,_)) :: _ -> stack
#endif
| (MapNode(k,v,l,r,_)) :: rest -> collapseLHS (l :: MapOne (k,v) :: r :: rest)
/// invariant: always collapseLHS result
let mutable stack = collapseLHS [s]
/// true when MoveNext has been called
let mutable started = false
let notStarted() = raise (new System.InvalidOperationException("Enumeration has not started. Call MoveNext."))
let alreadyFinished() = raise (new System.InvalidOperationException("Enumeration already finished."))
member i.Current =
if started then
match stack with
#if ONE
| MapOne (k,v) :: _ -> new KeyValuePair<_,_>(k,v)
#else
| (MapNode(k,v,MapEmpty,MapEmpty,_)) :: _ -> new KeyValuePair<_,_>(k,v)
#endif
| [] -> alreadyFinished()
| _ -> failwith "Please report error: Map iterator, unexpected stack for current"
else
notStarted()
member i.MoveNext() =
if started then
match stack with
#if ONE
| MapOne _ :: rest ->
#else
| (MapNode(_,_,MapEmpty,MapEmpty,_)) :: rest ->
#endif
stack <- collapseLHS rest;
not stack.IsEmpty
| [] -> false
| _ -> failwith "Please report error: Map iterator, unexpected stack for moveNext"
else
// The first call to MoveNext "starts" the enumeration.
started <- true;
not stack.IsEmpty
let toSeq s =
let i = ref (MapIterator(s))
{ new IEnumerator<_> with
member self.Current = (!i).Current
interface System.Collections.IEnumerator with
member self.Current = box (!i).Current
member self.MoveNext() = (!i).MoveNext()
member self.Reset() = i := MapIterator(s)
interface System.IDisposable with
member self.Dispose() = ()}
#if FX_NO_DEBUG_DISPLAYS
#else
[<System.Diagnostics.DebuggerDisplay ("Count = {Count}")>]
#endif
[<Sealed>]
type Map<'Key,'T,'ComparerTag> when 'ComparerTag :> IComparer<'Key>( comparer: IComparer<'Key>, tree: MapTree<'Key,'T>) =
static let refresh (m:Map<_,_,'ComparerTag>) t = Map<_,_,'ComparerTag>(comparer=m.ComparerUntyped, tree=t)
member s.Tree = tree
member s.ComparerUntyped : IComparer<'Key> = comparer
member s.Comparer = (comparer :?> 'ComparerTag)
static member Empty(comparer : 'ComparerTag) = Map<'Key,'T,'ComparerTag>(comparer=comparer, tree=MapTree.empty)
member m.Add(k,v) = refresh m (MapTree.add comparer k v tree)
member m.IsEmpty = MapTree.isEmpty tree
member m.Item with get(k : 'Key) = MapTree.find comparer k tree
member m.First(f) = MapTree.first f tree
member m.Exists(f) = MapTree.exists f tree
member m.Filter(f) = MapTree.filter comparer f tree |> refresh m
member m.ForAll(f) = MapTree.forAll f tree
member m.Fold f acc = MapTree.fold f tree acc
member m.FoldSection lo hi f acc = MapTree.foldSection comparer lo hi f tree acc
member m.FoldAndMap f z =
let tree,z = MapTree.foldMap comparer f tree z MapTree.empty
refresh m tree, z
member m.Iterate f = MapTree.iter f tree
member m.MapRange f = refresh m (MapTree.map f tree)
member m.Map f = refresh m (MapTree.mapi f tree)
member m.Partition(f) =
let r1,r2 = MapTree.partition comparer f tree
refresh m r1, refresh m r2
member m.Count = MapTree.count tree
member m.ContainsKey(k) = MapTree.containsKey comparer k tree
member m.Remove(k) = refresh m (MapTree.remove comparer k tree)
member m.TryFind(k) = MapTree.tryFind comparer k tree
member m.ToList() = MapTree.toList tree
member m.ToArray() = MapTree.toArray tree
static member FromList(comparer : 'ComparerTag,l) : Map<'Key,'T,'ComparerTag> =
Map<_,_,_>(comparer=comparer, tree=MapTree.ofList comparer l)
static member Create(comparer : 'ComparerTag, ie : seq<_>) : Map<'Key,'T,'ComparerTag> =
Map<_,_,_>(comparer=comparer, tree=MapTree.ofSeq comparer ie)
interface IEnumerable<KeyValuePair<'Key, 'T>> with
member s.GetEnumerator() = MapTree.toSeq tree
interface System.Collections.IEnumerable with
override s.GetEnumerator() = (MapTree.toSeq tree :> System.Collections.IEnumerator)
override this.Equals(that) =
match that with
// Cast to the exact same type as this, otherwise not equal.
| :? Map<'Key,'T,'ComparerTag> as that -> ((this :> System.IComparable).CompareTo(that) = 0)
| _ -> false
interface System.IComparable with
member m1.CompareTo(m2: obj) =
Seq.compareWith
(fun (kvp1 : KeyValuePair<_,_>) (kvp2 : KeyValuePair<_,_>)->
let c = m1.ComparerUntyped.Compare(kvp1.Key,kvp2.Key) in
if c <> 0 then c else Unchecked.compare kvp1.Value kvp2.Value)
// Cast m2 to the exact same type as m1, see 4884.
// It is not OK to cast m2 to seq<KeyValuePair<'Key,'T>>, since different compares could permute the KVPs.
m1 (m2 :?> Map<'Key,'T,'ComparerTag>)
member this.ComputeHashCode() =
let combineHash x y = (x <<< 1) + y + 631
let mutable res = 0
for KeyValue(x,y) in this do
res <- combineHash res (Unchecked.hash x)
res <- combineHash res (Unchecked.hash y)
abs res
override this.GetHashCode() = this.ComputeHashCode()
type Map<'Key,'T> = Map<'Key, 'T, IComparer<'Key>>
type Set<'T> = Set<'T, IComparer<'T>>
|