Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

xWebAdmin.SortedStringArray


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
// ====================================================================
//  Class:  XAdmin.SortedStringArray
//  Parent: XAdmin.StringArray
//
//  Sorted list - sorts based on tag
// ====================================================================

class SortedStringArray extends StringArray;

function int Add(coerce string item, coerce string tag, optional bool bUnique)
{
local int pos;

	pos = FindTagId(tag);

	if (pos < 0)
		return InsertAt(-pos-1, item, tag);
	else if (bUnique)
		return pos;

	return InsertAt(pos, item, tag);
}

function int FindTagId(coerce string Tag)
{
	local int Last, Min, Max, Pos;

	Last = AllItems.Length - 1;
	if ( Last < 0 || IsBefore(Tag,AllItems[0].Tag) )
		return -1;

	if (Tag ~= AllItems[0].Tag)
		return 0;

	if (Tag ~= AllItems[Last].Tag)
		return Last;

//	if (Last == 0)
//		return -2;

	// Add tag to end of list
    if (!IsBefore(Tag,AllItems[Last].tag))
	    return (-(Last+1))-1;

    // Find the position of insertion
    max = Last;
    pos = Last;
    do {
        if (tag ~= AllItems[pos].tag)
            return pos;
        if (IsBefore(Tag,AllItems[pos].tag))
            max = pos;
        else min = pos;

        pos = (min + max)/2;
    } until (max-min < 2);
    if (pos == 0)
		return -2;

    return -pos-2;
}


Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Di 5.9.2006 22:36:30.000 - Creation time: Do 14.8.2014 09:58:50.121 - Created with UnCodeX