summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Methodical/Arrays/lcs/lcsmax.cs
blob: d055e0d882cdf4a9997bad746f907e89c5dffb59 (plain)
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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;

namespace JitTest
{
    internal class LCS
    {
        private const int RANK = 8;

        private static String buildLCS(int[,,,,,,,] b, char[] X, int[] ind)
        {
            for (int i = 0; i < RANK; i++)
                if (ind[i] == 0) return "";

            int L = b[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]];
            if (L == RANK)
            {
                for (int i = 0; i < RANK; i++)
                    ind[i]--;
                int idx = ind[0];
                return buildLCS(b, X, ind) + X[idx];
            }
            if (L >= 0 && L < RANK)
            {
                ind[L]--;
                return buildLCS(b, X, ind);
            }
            throw new Exception();
        }

        private static void findLCS(int[,,,,,,,] c, int[,,,,,,,] b, char[][] seq, int[] len)
        {
            int[] ind = new int[RANK];
            for (int i = 0; i < RANK; i++)
                ind[i] = 1;

            int R = 0;
            while (R < RANK)
            {
                bool eqFlag = true;
                for (int i = 1; i < RANK; i++)
                {
                    if (seq[i][ind[i] - 1] != seq[i - 1][ind[i - 1] - 1])
                    {
                        eqFlag = false;
                        break;
                    }
                }

                if (eqFlag)
                {
                    c[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]] =
                        c[ind[0] - 1, ind[1] - 1, ind[2] - 1, ind[3] - 1,
                            ind[4] - 1, ind[5] - 1, ind[6] - 1, ind[7] - 1] + 1;
                    b[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]] = RANK;
                }
                else
                {
                    R = -1;
                    int M = -1;
                    for (int i = 0; i < RANK; i++)
                    {
                        ind[i]--;
                        if (c[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]] > M)
                        {
                            R = i;
                            M = c[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]];
                        }
                        ind[i]++;
                    }
                    if (R < 0 || M < 0)
                        throw new Exception();

                    c[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]] = M;
                    b[ind[0], ind[1], ind[2], ind[3], ind[4], ind[5], ind[6], ind[7]] = R;
                }

                R = 0;
                while (R < RANK)
                {
                    ind[R]++;
                    if (ind[R] < len[R]) break;
                    ind[R++] = 1;
                }
            }
        }

        private static int Main()
        {
            Console.WriteLine("Test searches for longest common subsequence of 8 strings\n\n");
            String[] str = new String[RANK] {
                "abdc",
                "badc",
                "bdacw",
                "bdca",
                "bcfdc",
                "bddsc",
                "bdccca",
                "bbdc"
            };

            int[] len = new int[RANK];
            char[][] seq = new char[RANK][];
            for (int i = 0; i < RANK; i++)
            {
                len[i] = str[i].Length + 1;
                seq[i] = str[i].ToCharArray();
            }

            int[,,,,,,,] c = new int[len[0], len[1], len[2], len[3], len[4], len[5], len[6], len[7]];
            int[,,,,,,,] b = new int[len[0], len[1], len[2], len[3], len[4], len[5], len[6], len[7]];

            findLCS(c, b, seq, len);

            for (int i = 0; i < RANK; i++)
                len[i]--;

            if ("bdc" == buildLCS(b, seq[0], len))
            {
                Console.WriteLine("Test passed");
                return 100;
            }
            else
            {
                Console.WriteLine("Test failed.");
                return 0;
            }
        }
    }
}