释义 |
Bumping AlgorithmGiven a Permutation of , the bumping algorithm constructs a standardYoung Tableau by inserting the one by one into an already constructed Young Tableau. To apply the bumpingalgorithm, start with , which is a Young Tableau. If through have already been inserted, then inorder to insert , start with the first line of the already constructed Young Tableau and search for the firstelement of this line which is greater than . If there is no such element, append to the first line and stop.If there is such an element (say, ), exchange for , search the second line using , and so on. See also Young Tableau References
Skiena, S. Implementing Discrete Mathematics: Combinatorics and Graph Theory with Mathematica. Reading, MA: Addison-Wesley, 1990.
|