Hello

I need to create a table (using multidimensional array/vector) that contains datas in a spiral form.

Here's my work so far:

int current_char = 0, rows = 3, columns = 4;
string input = "abcdefghijkl";
vector< vector<string> > str_table(rows, vector<string>(columns));

    for(int i = 0; i < (int)input.length(); i++)
    {
        splitted_input.push_back(input.substr(i, 1));
    }
    for(int x = 0; x < rows; x++)
    {
        for(int y = 0; y < columns; y++)
        {
            str_table[x][y] = splitted_input.at(current_char);
            current_char++;
        }
    }

and it produces... (illustrated below)

Now my problem is making it spiral..

[img]http://img210.imageshack.us/img210/3671/tospiralub1.jpg[/img]

any ideas?

(sorry i made the illust. using mspaint :p)

Recommended Answers

All 3 Replies

Well What exactly does Spiral mean?

Secondly could you just illustrate what is the desired output your code like you did with the mspaint example.

I mean, it looks like spiral..if you dont know how spiral looks like, http://images.google.com/images?q=spiral

now look at my illustration back
I wanna read it from left to right, from top to bottom..
so, normally it will be read as

abcdefghijkl

but after I reformed it to spiral,

abcdjkleihgf..


any ideas? help would be greatly appreciated :)

I guess you should first fill in the numbers in the 1st row then the last column and then the last row then the first colomn. After that make it recrusive for the columns and rows inside and you can have that.


abcd
k l e
j i h g f

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.