Given a matrix containing lower alphabetical characters only, we need to print all palindromic paths in given matrix. A path is defined as a sequence of cells starting from top-left cell and ending at bottom-right cell. We are allowed to move to right and down only from current cell. We cannot go down diagonally.
Example:
Input : mat[][] = {"aaab”,
"baaa”
“abba”}
Output :aaaaaa, aaaaaa, abaaba
Explanation :
aaaaaa (0, 0) -> (0, 1) -> (1, 1) ->
(1, 2) -> (1, 3) -> (2, 3)
aaaaaa (0, 0) -> (0, 1) -> (0, 2) ->
(1, 2) -> (1, 3) -> (2, 3)
abaaba (0, 0) -> (1, 0) -> (1, 1) ->
(1, 2) -> (2, 2) -> (2, 3)
Order of elements in the output array doesn’t matter.
The idea is simple. We start from top left (0, 0) and explore all paths to bottom right. If a path turns to be palindrome, we print it.
C++
#include<bits/stdc++.h>
using namespace std;
#define N 4
bool isPalin(string str)
{
int len = str.length() / 2;
for ( int i = 0; i < len; i++)
{
if (str[i] != str[str.length() - i - 1])
return false ;
}
return true ;
}
void palindromicPath(string str, char a[][N],
int i, int j, int m, int n)
{
if (j < m - 1 || i < n - 1)
{
if (i < n - 1)
palindromicPath(str + a[i][j], a, i + 1, j, m, n);
if (j < m - 1)
palindromicPath(str + a[i][j], a, i, j + 1, m, n);
}
else {
str = str + a[n - 1][m - 1];
if (isPalin(str))
cout<<(str)<<endl;
}
}
int main()
{
char arr[][N] = { { 'a' , 'a' , 'a' , 'b' },
{ 'b' , 'a' , 'a' , 'a' },
{ 'a' , 'b' , 'b' , 'a' } };
string str = "" ;
palindromicPath(str, arr, 0, 0, 4, 3);
return 0;
}
|
Java
public class PalinPath {
public static boolean isPalin(String str)
{
int len = str.length() / 2 ;
for ( int i = 0 ; i < len; i++) {
if (str.charAt(i) != str.charAt(str.length() - i - 1 ))
return false ;
}
return true ;
}
public static void palindromicPath(String str, char a[][],
int i, int j, int m, int n)
{
if (j < m - 1 || i < n - 1 ) {
if (i < n - 1 )
palindromicPath(str + a[i][j], a, i + 1 , j, m, n);
if (j < m - 1 )
palindromicPath(str + a[i][j], a, i, j + 1 , m, n);
}
else {
str = str + a[n - 1 ][m - 1 ];
if (isPalin(str))
System.out.println(str);
}
}
public static void main(String args[])
{
char arr[][] = { { 'a' , 'a' , 'a' , 'b' },
{ 'b' , 'a' , 'a' , 'a' },
{ 'a' , 'b' , 'b' , 'a' } };
String str = "" ;
palindromicPath(str, arr, 0 , 0 , 4 , 3 );
}
}
|
Python 3
def isPalin( str ):
l = len ( str ) / / 2
for i in range ( l) :
if ( str [i] ! = str [ len ( str ) - i - 1 ]):
return False
return True
def palindromicPath( str , a, i, j, m, n):
if (j < m - 1 or i < n - 1 ) :
if (i < n - 1 ):
palindromicPath( str + a[i][j], a,
i + 1 , j, m, n)
if (j < m - 1 ):
palindromicPath( str + a[i][j], a,
i, j + 1 , m, n)
else :
str = str + a[n - 1 ][m - 1 ]
if isPalin( str ):
print ( str )
if __name__ = = "__main__" :
arr = [[ 'a' , 'a' , 'a' , 'b' ],
[ 'b' , 'a' , 'a' , 'a' ],
[ 'a' , 'b' , 'b' , 'a' ]]
str = ""
palindromicPath( str , arr, 0 , 0 , 4 , 3 )
|
C#
using System;
class GFG
{
public static bool isPalin( string str)
{
int len = str.Length / 2;
for ( int i = 0; i < len; i++)
{
if (str[i] != str[str.Length - i - 1])
{
return false ;
}
}
return true ;
}
public static void palindromicPath( string str, char [][] a,
int i, int j, int m, int n)
{
if (j < m - 1 || i < n - 1)
{
if (i < n - 1)
{
palindromicPath(str + a[i][j],
a, i + 1, j, m, n);
}
if (j < m - 1)
{
palindromicPath(str + a[i][j],
a, i, j + 1, m, n);
}
}
else
{
str = str + a[n - 1][m - 1];
if (isPalin(str))
{
Console.WriteLine(str);
}
}
}
public static void Main( string [] args)
{
char [][] arr = new char [][]
{
new char [] { 'a' , 'a' , 'a' , 'b' },
new char [] { 'b' , 'a' , 'a' , 'a' },
new char [] { 'a' , 'b' , 'b' , 'a' }
};
string str = "" ;
palindromicPath(str, arr, 0, 0, 4, 3);
}
}
|
Javascript
<script>
function isPalin(str)
{
let len = str.length / 2;
for (let i = 0; i < len; i++) {
if (str[i] != str[str.length - i - 1])
return false ;
}
return true ;
}
function palindromicPath(str,a,i,j,m,n)
{
if (j < m - 1 || i < n - 1) {
if (i < n - 1)
palindromicPath(str + a[i][j], a,
i + 1, j, m, n);
if (j < m - 1)
palindromicPath(str + a[i][j], a, i,
j + 1, m, n);
}
else {
str = str + a[n - 1][m - 1];
if (isPalin(str))
document.write(str+ "<br>" );
}
}
let arr = [[ 'a' , 'a' , 'a' , 'b' ],
[ 'b' , 'a' , 'a' , 'a' ],
[ 'a' , 'b' , 'b' , 'a' ]]
let str = ""
palindromicPath(str, arr, 0, 0, 4, 3)
</script>
|
Output :
abaaba
aaaaaa
aaaaaa
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
18 Sep, 2023
Like Article
Save Article