-
n dimension spiral matrix
Let A be an array of (n) elements. Write a procedure which will také this array as input and return a matrix which will be spiral in nature. i.e.
if A= [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] then
fn(A)= B
=
7 8 9 10
6 1 2 11
5 4 3 12
16 15 14 13
although i could easily handle the problem for a 2 dimension matrix the problem has to be solved in 3 dimension as well as n dimension.
i'm finding it difficult to visualize the same problem for 3 dimension and then for n dimension.
can som1 help me?
thank u
Eshwar
-
there are several options for 3-d. You need to get an example of what it would look like in 3-d (you cannot be expected to produce output until that output has been clearly defined).
-
 Originally Posted by eshwar_gunner99
Let A be an array of (n) elements. Write a procedure which will také this array as input and return a matrix which will be spiral in nature. i.e.
if A= [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] then
fn(A)= B
=
7 8 9 10
6 1 2 11
5 4 3 12
16 15 14 13
although i could easily handle the problem for a 2 dimension matrix the problem has to be solved in 3 dimension as well as n dimension.
i'm finding it difficult to visualize the same problem for 3 dimension and then for n dimension.
can som1 help me?
thank u
Eshwar
can you help me to handle this problem for a 2 dimension matrix in C
thanx in advance
Similar Threads
-
By krazykrisi in forum C++
Replies: 3
Last Post: 01-25-2007, 11:59 AM
-
By emmanuella in forum C++
Replies: 2
Last Post: 11-23-2006, 05:07 PM
-
By jrhaley123 in forum Java
Replies: 7
Last Post: 11-19-2005, 07:18 PM
-
By sarahabbi in forum Java
Replies: 0
Last Post: 07-05-2005, 12:20 AM
-
By ASPSmith Training in forum dotnet.announcements
Replies: 0
Last Post: 06-18-2002, 03:39 AM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks