GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Math::String::Charset::Nested(3) User Contributed Perl Documentation Math::String::Charset::Nested(3)

Math::String::Charset::Nested - A charset for Math::String objects.

    use Math::String::Charset;

    # construct a charset from bigram table, and an initial set (containing
    # valid start-characters)
    # Note: After an 'a', either an 'b', 'c' or 'a' can follow, in this order
    #       After an 'd' only an 'a' can follow
    $bi = new Math::String::Charset ( {
      start => 'a'..'d',
      bi => {
        'a' => [ 'b', 'c', 'a' ],
        'b' => [ 'c', 'b' ],
        'c' => [ 'a', 'c' ],
        'd' => [ 'a', ],
        'q' => [ ],                     # 'q' will be automatically in end
        }
      end => [ 'a', 'b', ],
      } );
    print $bi->length();                # 'a','b' => 2 (cross of end and start)
    print scalar $bi->class(2);         # count of combinations with 2 letters
                                        # will be 3+2+2+1 => 8

perl5.005, Exporter, Math::BigInt, Math::String::Charset

Exports nothing.

This module lets you create an charset object, which is used to contruct Math::String objects. This object knows how to handle charsets with bi-grams.

Upon error, the field "_error" stores the error message, then die() is called with this message. If you do not want the program to die (f.i. to catch the errors), then use the following:

        use Math::String::Charset::Nested;

        $Math::String::Charset::Nested::die_on_error = 0;

        $a = new Math::String::Charset::Nested ();      # error, empty set!
        print $a->error(),"\n";

This object caches certain calculation results (f.i. the number of possible combinations for a certain string length), thus greatly speeding up sequentiell Math::String conversations from string to number, and vice versa.

All characters used to construct the charset must have the same length, but need not neccessarily be one byte/char long.

If a seperator string is used, the character length is not used.

With a simple charset, converting between the number and string is relatively simple and straightforward, albeit slow.

With bigrams, this becomes even more complex. But since all the information on how to convert between number and string in inside the charset definition, Math::String::Charset will produce (and sometimes cache) this information. Thus Math::String is simple a hull around Math::String::Charset and it's subclasses and Math::BigInt.

For a discussion of these see Math::String::Charset.

Now imagine a charset that is defined as follows:

Starting characters for each string can be 'a','c','b' and 'd' (in that order). Each 'a' can be followed by either 'b', 'c' or 'a' (again in that order), each 'c can be followed by either 'c', 'd' (again in that order), and each 'b' or 'd' can be followed by an 'a' (and nothing else).

The definition is thus:

        use Math::String::Charset;

        $cs = Math::String::Charset->new( {
                start => [ 'a', 'c', 'b', 'd' ],
                bi => {
                  'a' => [ 'b','c','a' ],
                  'b' => [ 'a', ],
                  'd' => [ 'a', ],
                  'c' => [ 'c','d' ],
                  }
                } );

This means that each character in a string depends on the previous character. Please note that the probabilities on which characters follows how often which character do not concern us here. We simple enumerate them all. Or put differently: each probability is 1.

With the charset above, the string sequence runs as follows:

        string  number  count of strings
                        with length

          a       1
          c       2
          b       3
          d       4     1=4
         ab       5
         ac       6
         aa       7
         cc       8
         cd       9
         ba      10
         da      11     2=7
        aba      12
        acc      13
        acd      14
        aab      15
        aac      16
        aaa      17
        ccc      18
        ccd      19
        cda      20
        bab      21
        bac      22
        baa      23
        dab      24
        dac      25
        daa      26     3=15
       abab      27
       abac      28
       abaa      29
       accc      30
       accd      31
       acda      32
       aaba      33
       aacc      34
       aacd      35     etc

There are 4 strings with length 1, 7 with length 2, 15 with length 3 etc. Here is an example for first() and last():

        $charset->first(3);     # gives aba
        $charset->last(3);      # gives daa

Sometimes, you want to specify that a string can end only in certain characters. There are two ways:

        use Math::String::Charset;

        $cs = Math::String::Charset->new( {
                start => [ 'a', 'c', 'b', 'd' ],
                bi => {
                  'a' => [ 'b','c','a' ],
                  'b' => [ 'a', ],
                  'd' => [ 'a', ],
                  'c' => [ 'c','d' ],
                  }
                end => [ 'a','b' ],
                } );

This defines any string ending not in 'a' or 'b' as invalid. The sequence runs thus:

        string  number  count of strings
                        with length

          a       1
          b       2     2
         ab       4
         aa       5
         ba       6
         da       7     4
        aba       8
        aab       9
        aaa      10
        cda      11
        bab      12
        baa      13
        dab      14
        daa      15     8
       abab      16
       abaa      17     etc

There are now only 2 strings with length 1, 4 with length 2, 8 with length 3 etc.

The other way is to specify the (additional) ending restrictions implicit by using chars that are not followed by other characters:

        use Math::String::Charset;

        $cs = Math::String::Charset->new( {
                start => [ 'a', 'c', 'b', 'd' ],
                bi => {
                  'a' => [ 'b','c','a' ],
                  'b' => [ 'a', ],
                  'd' => [ 'a', ],
                  'c' => [  ],
                  }
                } );

Since 'c' is not followed by any characters, there are no strings with a 'c' in the middle (which means strings can end in 'c'):

        string  number  count of strings
                        with length

          a       1
          c       2
          b       3
          d       4     4
         ab       5
         ac       6
         aa       7
         ba       8
         da       9     5
        aba      10
        aab      11
        aac      12
        aaa      13
        bab      14
        bac      15
        baa      16
        dab      17
        dac      18
        daa      19     10
       abab      20
       abac      21 etc

There are now 4 strings with length 1, 5 with length 2, 10 with length 3 etc.

Any character that is not followed by another character is automatically added to "end". This is because otherwise you would have created a rendundand character which could never appear in any string:

Let's assume 'q' is not in the "end" set, and not followed by any other character:

1.
There can no string "q", since strings of lenght 1 start and end with their only character. Since 'q' is not in "end", the string "q" is invalid (no matter wether 'q' appears in "start" or not).
2.
No string longer than 1 could start with 'q' or have a 'q' in the middle, since 'q' is not followed by anything. This leaves only strings with length 1 and these are invalid according to rule 1.

From now on, a 'class' refers to all strings with the same length. The order or length of a class is the length of all strings in it.

With a simple charset, each class has exactly M times more strings than the previous class (e.g. the class with a length - 1). M is in this case the length of the charset.

See Math::String::Charset.

For charsets of higher order, even determining the number of all strings in a class becomes more difficult. Fortunately, there is a way to do it in N steps just like with a simple charset.

The first way is based on the observation that the number of strings in class n+1 only depends on the number of ending chars in class n, and nothing else.

This is, however, not used in the current implemenation, since there is a slightly faster/simpler way based on the count of strings that start with a given character in class n, n-1, n-2 etc. See below for a description.

Here is for reference the example with ending char counts:

        use Math::String::Charset;

        $cs = Math::String::Charset->new( {
                start => [ 'a', 'c', 'b', 'd' ],
                bi => {
                  'a' => [ 'b','c','a' ],
                  'c' => [ 'c','d' ],
                  'b' => [ 'a', ],
                  'd' => [ 'a', ],
                  }
                } );

        Class 1:
          a       1
          c       2
          b       3
          d       4     4

As you can see, there is one 'a', one 'c', one 'b' and one 'd'. To determine how many strings are in class 2, we must multiply the occurances of each character by the number of how many characters it is followed:

        a * 3 + c * 2 + d * 1 + b * 1

which equals

        1 * 3 + 1 * 2 + 1 * 1 + 1 * 1

If we summ this all up, we get 3+2+1+1 = 7, which is exactly the number of strings in class 2. But to determine now the number of strings in class 3, we must now how many strings in class 2 end on 'a', how many on 'b' etc.

We can do this in the same loop, by not only keeping a sum, but by counting all the different endings. F.i. exactly one string ended in 'a' in class 1. Since 'a' can be followed by 3 characters, for each character we know that it will occure at least 1 time. So we add the 1 to the character in question.

        $new_count->{'b'} += $count->{'a'};

This yields the amounts of strings that end in 'b' in the next class.

We have to do this for every different starting character, and for each of the characters that follows each starting character. In the worst case this means M*M steps, while M is the length of the charset. We must repeat this for each of the classes, so that the complexity becomes O(N*M*M) in the worst case. For strings of higher order this gets worse, adding a *M for each higher order.

For our example, after processing 'a', we will have the following counts for ending chars in class 2:

        b => 1
        c => 1
        a => 1

After processing 'c', it is:

        b => 1
        c => 2 (+1)
        a => 1
        d => 1 (+1)

because 'c' is followed by 'd' or 'c'. When we are done with all characters, the following count's are in our $new_count hash:

        b => 1
        c => 2
        a => 3
        d => 1

When we sum them up, we get the count of strings in class 2. For class 3, we start with an empty count hash again, and then again for each character process the ones that follow it. Example for a:

        b => 0
        c => 0
        a => 0
        d => 0

3 times ending in 'a' followed by 'b','c' or 'd':

        b => 3  (+3)
        c => 3  (+3)
        a => 3  (+3)
        d => 0

2 times ending 'c' followed by 'c' or 'd':

        b => 3
        c => 5  (+2)
        a => 3
        d => 2  (+2)

After processing 'b' and 'd' in a similiar manner we get:

        b => 3
        c => 5
        a => 5
        d => 2

The sum is 15, and we know now that we have 15 different strings in class 3. The process for higher classes is the same again, re-using the counts from the lower class.

The second, and implemented method counts for each class how many strings start with a given character. This gives us two information at once:
  • A string of length N and a starting char of X, which number it must have at minimum (by summing up the counts of all strings that come before X) and how many strings are there starting with X (although this is not used for X, but only for all strings that come after X).
  • How many strings are there with a given length, by summing up all the counts for the different starting chars.

This method also has the advantage that it doesn't need to re-calculate the count for each level. If we have cached the information for class 7, we can calculate class 8 right-away. The old method would either need to start at class 1, working up to 8 again, or cache additional information of the order N (where N is the number of different characters in the charset).

Here is how the second method works, based on the example above:

                start => [ 'a', 'c', 'b', 'd' ],
                bi => {
                  'a' => [ 'b','c','a' ],
                  'c' => [ 'c','d' ],
                  'b' => [ 'a', ],
                  'd' => [ 'a', ],
                  }

The sequence runs as follows:

        String  Strings starting with
                this character in this level

          a     1
          c     1
          b     1
          d     1
         ab
         ac
         aa     3       (1+1+1)
         cc
         cd     2       (1+1)
         ba     1
         da     1
        aba
        acc
        acd
        aab
        aac
        aaa     6       1 (b) + 2 (c) + 3 (a)
        ccc
        ccd
        cda     3       2 (c) + 1 (d)
        bab
        bac
        baa     3
        dab
        dac
        daa     3
       abab
       abac
       abaa
       accc     etc

As you can see, for length one, there is exactly one string for each starting character.

For the next class, we can find out how many strings start with a given char, by adding together all the counts of strings in the previous class.

F.i. in class 3, there are 6 strings starting with 'a'. We find this out by adding together 1 (there is 1 string starting with 'b' in class 2), 2 (there are two strings starting with 'c' in class 2) and 3 (three strings starting with 'a' in class 2).

As a special case we must throw away all strings in class 2 that have invalid ending characters. By doing this, we automatically have restricted all strings to only valid ending characters. Therefore, class 1 and 2 are setup upon creating the charset object, the others are calculated on-demand and then cached.

Since we are calculating the strings in the order of the starting characters, we can sum up all strings up to this character.

        String  First string in that class

          a     0
          c     1
          b     2
          d     3

         ab     0
         ac
         aa
         cc     3
         cd
         ba     5
         da     6

        aba     0
        acc
        acd
        aab
        aac
        aaa
        ccc     6
        ccd
        cda
        bab     9
        bac
        baa
        dab     12
        dac
        daa
       abab     0
       abac
       abaa
       accc     etc

When we add to the number of the last character (f.i. 12 in case of 'd' in class 3) the amount of strings with that character (here 3), we end up with the number of all strings in that class.

Thus in the same loop we calculate:

how many stings start with a given character in this class
what is the first number of a string starting with 'x' in that class
how many strings are in this class at all

That should be all we need to know to convert a string to it's number.

From the section above we know that we can find out which number a string of a certain class has at minimum and at maximum. But what number has the string in that range, actually?

Well, given the information it is easy. First, find out which minimum number a string has with the given starting character in the class. Add this to it's base number. Then reduce the class by one, look at the next character and repeat this. In pseudo code:

        $class = length ($string); $base = base_number->[$class];
        foreach ($character)
          {
          $base += $sum->[$class]->{$character};
          $class --;
          }

So, after N simple steps (where N is the number of characters in the string), we have found the number of the string.

Section not fully done yet.

It helps to imagine the strings like a couple of trees (ASCII art is crude):

        class:  1   2    3   etc

       number
        1       a
          5     +--ab
           12   |   +--aba
          6     +--ac
           13   |   +--acc
           14   |   +--acd
          7     +--aa
           15       +--aab
           16       +--aac
           17       +--aaa

        2       c
          8     +--cc
           18   |   +--ccc
           19   |   +--ccd
          9     +--cd
           20       +--cda

        3       b
         10     +--ba
           21       +--bab
           22       +--bac
           23       +--baa

        4       d
         11     +--da
           24       +--dab
           25       +--dac
           26       +--daa

As you can see, there is a (independend) tree for each of the starting characters, which in turn contains independed sub-trees for each string in the next class etc. It is interesting to note that each string deeper in the tree starts with the same common starting string, aka 'd', 'da', 'dab' etc.

With a simple charset, all these trees contain the same number of nodes. With higher order charsets, this is no longer true.

new()
            new();
    

Create a new Math::String::Charset::Grouped object.

The constructor takes a HASH reference. The charset will be of order 2 or greater and type 0.

The following keys can be used:

        minlen          Minimum string length, -inf if not defined
        maxlen          Maximum string length, +inf if not defined
        bi              hash,  table with bi-grams
        start           array ref to list of all valid (starting) characters
        end             array ref to list of all valid ending characters
        sep             separator character, none if undef (only for order 1)
    
sep
"sep" is a seperator string seperating the characters from each other. This is used to make characters with different lengths possible.
start
"start" contains an array reference to all valid starting characters, e.g. no valid string can start with a character not listed here.
bi
"bi" contains a hash reference, each key of the hash points to an array, which in turn contains all the valid combinations of two letters.
end
"start" contains an array reference to all valid ending characters, e.g. no valid string can end with a character not listed here. Note that strings of length 1 start and end with their only character, so the character must be listed in "end" and "start" to produce a string with one character. Also all characters that are not followed by any other character are added silently to the "end" set.
minlen
Optional minimum string length. Any string shorter than this will be invalid. Must be shorter than maxlen. If not given is set to -inf.

Note that the minlen might be adjusted to a greater number, if it is set to 1 or greater, but there are not valid strings with 2,3 etc. In this case the minlen will be set to the first non-empty class of the charset.

maxlen
Optional maximum string length. Any string longer than this will be invalid. Must be longer than minlen. If not given is set to +inf.
minlen()
        $charset->minlen();
    

Return minimum string length.

maxlen()
        $charset->maxlen();
    

Return maximum string length.

length()
        $charset->length();
    

Return the number of items in the charset, for higher order charsets the number of valid 1-character long strings. Shortcut for "$charset->class(1)".

count()
Returns the count of all possible strings described by the charset as a positive BigInt. Returns 'inf' if no maxlen is defined, because there should be no upper bound on how many strings are possible. (This might change if we can calculate an upper bound - not sure if this is possible with bigrams).

If maxlen is defined, forces a calculation of all possible "class()" values and may therefore be very slow on the first call, it also caches possible lot's of values.

class()
        $charset->class($order);
    

Return the number of items in a class.

        print $charset->class(5);       # how many strings with length 5?
    
char()
        $charset->char($nr);
    

Returns the character number $nr from the set, or undef.

        print $charset->char(0);        # first char
        print $charset->char(1);        # second char
        print $charset->char(-1);       # last one
    
lowest()
        $charset->lowest($length);
    

Return the number of the first string of length $length. This is equivalent to (but much faster):

        $str = $charset->first($length);
        $number = $charset->str2num($str);
    
highest()
        $charset->highest($length);
    

Return the number of the last string of length $length. This is equivalent to (but much faster):

        $str = $charset->first($length+1);
        $number = $charset->str2num($str);
        $number--;
    
order()
        $order = $charset->order();
    

Return the order of the charset: 2 (bi-grams), 3 etc for higher orders. See also "type()".

type()
        $type = $charset->type();
    

Return the type of the charset and is always 0 for nested charsets. See also "order()".

charlen()
        $character_length = $charset->charlen();
    

Return the length of one character in the set. 1 or greater.

chars()
        $chars = $charset->chars( $bigint );
    

Returns the number of characters that the string would have, when you would convert $bigint (Math::BigInt or Math::String object) back to a string. This is much faster than doing

        $chars = length ("$math_string");
    

since it does not need to actually construct the string.

first()
        $charset->first( $length );
    

Return the first string with a length of $length, according to the charset. See "lowest()" for the corrospending number.

last()
        $charset->last( $length );
    

Return the last string with a length of $length, according to the charset. See "highest()" for the corrospending number.

is_valid()
        $charset->is_valid();
    

Check wether a string conforms to the charset set or not.

error()
        $charset->error();
    

Returns "" for no error or an error message that occured if construction of the charset failed. Set $Math::String::Charset::die_on_error to 0 to get the error message, otherwise the program will die.

start()
        $charset->start();
    

In list context, returns a list of all characters in the start set, for simple charsets (e.g. no bi, tri-grams etc) simple returns the charset. In scalar context returns the lenght of the start set.

Note that the returned end set can be differen from what you specified upon constructing the charset, because characters that are not followed by any other character will be excluded from the start set (they can't possible start a string longer than one character).

Think of the start set as the set of all characters that can start a string with more than one character. The set for one character strings is called ones and you can access if via "ones()".

end()
        $charset->end();
    

In list context, returns a list of all characters in the end set, aka all characters a string can end with. For simple charsets (e.g. no bi, tri-grams etc) simple returns the charset. In scalar context returns the lenght of the end set.

Note that the returned end set can be differen from what you specified upon constructing the charset, because characters that are not followed by any other character will be included in the end set, too.

ones()
        $charset->ones();
    

In list context, returns a list of all strings consisting of one character, for simple charsets (e.g. no bi, tri-grams etc) simple returns the charset. In scalar context returns the lenght of the ones set.

This list is the cross of start and end that is calculated after adding characters with no followers to end, but before removing the characters with no followers from start.

Think of a string of only one character as if it starts with and ends in this character at the same time. For instance, if you have the following definition:

        cs = {
          start => [ 'a', 'b', 'c', 'q' ],
          end => [ 'b', 'c', 'x' ],
          bi => {
            q => [ ],
            a => [ 'b', 'c' ]
            b => [ 'a' ]
          }
        }
    

The 'q' is not followed by any other character, so it can only end strings. And since it is not in the end set, it is first added to this set:

        cs = {
          start => [ 'a', 'b', 'c', 'q' ],
          end => [ 'b', 'c', 'x', 'q' ],
          bi => {
            q => [ ],
            a => [ 'b', 'c' ]
            b => [ 'a' ]
          }
        }
    

Now the cross of "start" and "end" is build. Since only 'b', 'c' and 'q' appear in both "end" and "start", "ones" consists of:

        _ones => [ 'b', 'c', 'q' ]
    

The order of the chars in "ones" is the same ordering as in "start".

After this, any character that is not followed by an other character is removed from "start":

          start => [ 'a', 'b', ],
    

Thus a string with only one character can be 'b', 'c', or 'q', and any string with more than one character must start with either 'a' or 'b'.

prev()
        $string = Math::String->new( );
        $charset->prev($string);
    

Give the charset and a string, calculates the previous string in the sequence. This is faster than decrementing the number of the string and converting the new number to a string. This routine is mainly used internally by Math::String and updates the cache of the given Math::String.

next()
        $string = Math::String->new( );
        $charset->next($string);
    

Give the charset and a string, calculates the next string in the sequence. This is faster than incrementing the number of the string and converting the new number to a string. This routine is mainly used internally by Math::String and updates the cache of the given Math::String.

    use Math::String::Charset;

    # construct a charset from bigram table, and an initial set (containing
    # valid start-characters)
    # Note: After an 'a', either an 'b', 'c' or 'a' can follow, in this order
    #       After an 'd' only an 'a' can follow
    #       There is no 'q' as start character, but 'q' can follow 'd'!
    #       You need to define followers for 'q'!
    $bi = new Math::String::Charset ( {
      start => 'a'..'d',
      bi => {
        'a' => [ 'b', ],
        'b' => [ 'c', 'b' ],
        'c' => [ 'a', 'c' ],
        'd' => [ 'a', 'q' ],
        'q' => [ 'a', 'b' ],
        }
      } );
    print $bi->length(),"\n";                   # 4
    print scalar $bi->class(2),"\n";            # count of combos with 2 chars
                                                # will be 1+2+2+2+2 => 9
    my @comb = $bi->class(3);
    print join ("\n", @comb);

This will print:

        4
        7
        abc
        abb
        bca
        bcc
        bbc
        bbb
        cab
        cca
        ccc
        dab
        dqa
        dqb

Another example using characters of different lengths to find all combinations of words in a list:

        #!/usr/bin/perl -w

        # test for Math::String and Math::String::Charset

        BEGIN { unshift @INC, '../lib'; }

        use Math::String;
        use Math::String::Charset;
        use strict;

        my $count = shift || 4000;

        my $words = {};
        open FILE, 'wordlist.txt' or die "Can't read wordlist.txt: $!\n";
        while (<FILE>)
          {
          chomp; $words->{lc($_)} ++;   # clean out doubles
          }
        close FILE;
        my $cs = new Math::String::Charset ( { sep => ' ',
           words => $words,
          } );

        my $string = Math::String->new('',$cs);

        print "# Generating first $count strings:\n";
        for (my $i = 0; $i < $count; $i++)
          {
          print ++$string,"\n";
          }
        print "# Done.\n";

  • Currently only bigrams are supported. This should be generic and arbitrarily deeply nested.
  • str2num and num2str do not work fully yet.

None doscovered yet.

If you use this module in one of your projects, then please email me. I want to hear about how my code helps you ;)

This module is (C) Copyright by Tels http://bloodgate.com 2000-2003.

2021-07-18 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.