给定一个数字K ,任务是使用递归创建具有 next、previous、up 和 down 四个指针的循环链表结构。
注意:不允许使用任何指针数组或二维矩阵
请参阅此示例以了解 K = 3
例子:
Input: k = 3
Output: 1 2 3
4 5 6
7 8 9
Explanation:
The structure will look like below
方法:
请按照以下步骤逐步操作:
- 首先创建与右指针相连的K个单链表
- 每个列表的第一个节点应该通过向下指针指向它下面的节点
- 现在,将 K 单独列表与向下指针行明智地合并
- 然后在列表中按行和列创建循环
下面是上述方法的实现:
C++
// C++ program to recursively create
// loopy linked list with four
// pointer left, right, up, down
// by given value K without using
// array of pointer and 2D matrix
#include
using namespace std;
// Struct node of Circular linked
// list with four pointer
// next, prev, up, down
struct Node {
int data;
Node* left;
Node* right;
Node* up;
Node* down;
};
// Function to create a new node
Node* createNode(int value)
{
Node* temp = new Node();
temp->data = value;
temp->left = NULL;
temp->right = NULL;
temp->up = NULL;
temp->down = NULL;
return temp;
}
// Function to create Singly list
// whose nodes are connected with
// right pointer
Node* createListWithRightPointer(int k,
int i)
{
if (i > k)
return NULL;
Node* node = createNode(i);
// Recursively call the function to
// create list with the right pointer
node->right =
createListWithRightPointer(k,
i + 1);
return node;
}
// Function to create the k singly
// linked list and first node of
// each list is connected with
// down pointer
Node* createKsinglyLinkedList(int k)
{
int rNum = 1;
int limit = k;
Node* head = NULL;
Node* rowPointer = NULL;
// Loop to create the k singly list
// for each list first node points
// to its below node by down pointer
for (int i = 1; i <= k; i++) {
Node* templist =
createListWithRightPointer(limit,
rNum);
if (head == NULL) {
head = templist;
rowPointer = head;
}
else {
rowPointer->down = templist;
rowPointer = rowPointer->down;
}
rNum = rNum + k;
limit = limit + k;
}
return head;
}
// Function to merge all list with
// level wise via down pointer
void mergeKListWithDownPointer(Node* head)
{
Node* first = NULL;
Node* second = NULL;
Node* start = head;
first = start;
second = first->down;
// Run while loop to merge k list
// row wise with down pointer
while (second) {
while (first || second) {
first->down = second;
first = first->right;
second = second->right;
}
first = start->down;
second = first->down;
start = start->down;
}
}
// Function to create the loop
// for each column
void createLoopForEachColumn(Node* head)
{
Node* first = NULL;
Node* last = NULL;
first = head;
last = first;
while (last->down) {
last = last->down;
}
// Run while loop to create
// loop for each column
while (first || last) {
last->down = first;
first = first->right;
last = last->right;
}
}
// Function to create the loop
// for each row
void createLoopForEachRow(Node* head)
{
Node* first = NULL;
Node* last = NULL;
Node* start = NULL;
start = head;
first = head;
last = first;
while (last->right) {
last = last->right;
}
// Run while loop to create
// loop for each row
while (first->down != start) {
last->right = first;
first = first->down;
last = last->down;
}
last->right = first;
}
// Function to display the structure
// of the list
void display(Node* head)
{
// Pointer to move right
Node* rPtr;
// Pointer to move down
Node* dPtr = head;
// Pointer to stop printing
Node* start = head;
// Loop till node->down is not NULL
while (dPtr->down != start) {
rPtr = dPtr;
// Loop till node->right is
// not NULL
while (rPtr->right != dPtr) {
cout << rPtr->data << " ";
rPtr = rPtr->right;
}
cout << rPtr->data << " ";
cout << "\n";
dPtr = dPtr->down;
}
rPtr = dPtr;
// Loop till node->right is
// not NULL
while (rPtr->right != dPtr) {
cout << rPtr->data << " ";
rPtr = rPtr->right;
}
cout << rPtr->data << " ";
cout << "\n";
}
void createLoopInList(int k)
{
// Create k singly Linked List each
// first node of all list contain
// address of it's below first node
Node* head = createKsinglyLinkedList(k);
mergeKListWithDownPointer(head);
createLoopForEachColoumn(head);
createLoopForEachRow(head);
display(head);
}
int main()
{
int K = 4;
// Create the list structure
createLoopInList(K);
}
Java
// Java program to recursively create
// loopy linked list with four
// pointer left, right, up, down
// by given value K without using
// array of pointer and 2D matrix
class GFG{
// Struct node of Circular linked
// list with four pointer
// next, prev, up, down
static class Node {
int data;
Node left;
Node right;
Node up;
Node down;
};
// Function to create a new node
static Node createNode(int value)
{
Node temp = new Node();
temp.data = value;
temp.left = null;
temp.right = null;
temp.up = null;
temp.down = null;
return temp;
}
// Function to create Singly list
// whose nodes are connected with
// right pointer
static Node createListWithRightPointer(int k,
int i)
{
if (i > k)
return null;
Node node = createNode(i);
// Recursively call the function to
// create list with the right pointer
node.right =
createListWithRightPointer(k,
i + 1);
return node;
}
// Function to create the k singly
// linked list and first node of
// each list is connected with
// down pointer
static Node createKsinglyLinkedList(int k)
{
int rNum = 1;
int limit = k;
Node head = null;
Node rowPointer = null;
// Loop to create the k singly list
// for each list first node points
// to its below node by down pointer
for (int i = 1; i <= k; i++) {
Node templist =
createListWithRightPointer(limit,
rNum);
if (head == null) {
head = templist;
rowPointer = head;
}
else {
rowPointer.down = templist;
rowPointer = rowPointer.down;
}
rNum = rNum + k;
limit = limit + k;
}
return head;
}
// Function to merge all list with
// level wise via down pointer
static void mergeKListWithDownPointer(Node head)
{
Node first = null;
Node second = null;
Node start = head;
first = start;
second = first.down;
// Run while loop to merge k list
// row wise with down pointer
while (second!=null) {
while (first!=null || second!=null) {
first.down = second;
first = first.right;
second = second.right;
}
first = start.down;
second = first.down;
start = start.down;
}
}
// Function to create the loop
// for each column
static void createLoopForEachColumn(Node head)
{
Node first = null;
Node last = null;
first = head;
last = first;
while (last.down!=null) {
last = last.down;
}
// Run while loop to create
// loop for each column
while (first!=null || last!=null) {
last.down = first;
first = first.right;
last = last.right;
}
}
// Function to create the loop
// for each row
static void createLoopForEachRow(Node head)
{
Node first = null;
Node last = null;
Node start = null;
start = head;
first = head;
last = first;
while (last.right!=null) {
last = last.right;
}
// Run while loop to create
// loop for each row
while (first.down != start) {
last.right = first;
first = first.down;
last = last.down;
}
last.right = first;
}
// Function to display the structure
// of the list
static void display(Node head)
{
// Pointer to move right
Node rPtr;
// Pointer to move down
Node dPtr = head;
// Pointer to stop printing
Node start = head;
// Loop till node.down is not null
while (dPtr.down != start) {
rPtr = dPtr;
// Loop till node.right is
// not null
while (rPtr.right != dPtr) {
System.out.print(rPtr.data+ " ");
rPtr = rPtr.right;
}
System.out.print(rPtr.data+ " ");
System.out.print("\n");
dPtr = dPtr.down;
}
rPtr = dPtr;
// Loop till node.right is
// not null
while (rPtr.right != dPtr) {
System.out.print(rPtr.data+ " ");
rPtr = rPtr.right;
}
System.out.print(rPtr.data+ " ");
System.out.print("\n");
}
static void createLoopInList(int k)
{
// Create k singly Linked List each
// first node of all list contain
// address of it's below first node
Node head = createKsinglyLinkedList(k);
mergeKListWithDownPointer(head);
createLoopForEachColoumn(head);
createLoopForEachRow(head);
display(head);
}
public static void main(String[] args)
{
int K = 4;
// Create the list structure
createLoopInList(K);
}
}
// This code contributed by sapnasingh4991
Python3
# Python3 program to recursively create
# loopy linked list with four
# pointer left, right, up, down
# by given value K without using
# array of pointer and 2D matrix
# Struct node of Circular linked
# list with four pointer
# next, prev, up, down
class Node:
def __init__(self, data):
self.left = None
self.right = None
self.up = None
self.down = None
self.data = data
# Function to create a new node
def createNode(value):
temp = Node(value)
return temp;
# Function to create Singly list
# whose nodes are connected with
# right pointer
def createListWithRightPointer(k, i):
if (i > k):
return None;
node = createNode(i);
# Recursively call the function to
# create list with the right pointer
node.right = createListWithRightPointer(k, i + 1);
return node;
# Function to create the k singly
# linked list and first node of
# each list is connected with
# down pointer
def createKsinglyLinkedList( k):
rNum = 1;
limit = k;
head = None;
rowPointer = None;
# Loop to create the k singly list
# for each list first node points
# to its below node by down pointer
for i in range(1, k + 1):
templist = createListWithRightPointer(limit, rNum);
if (head == None):
head = templist;
rowPointer = head;
else:
rowPointer.down = templist;
rowPointer = rowPointer.down;
rNum = rNum + k;
limit = limit + k;
return head;
# Function to merge all list with
# level wise via down pointer
def mergeKListWithDownPointer(head):
first = None;
second = None;
start = head;
first = start;
second = first.down;
# Run while loop to merge k list
# row wise with down pointer
while (second):
while (first or second):
first.down = second;
first = first.right;
second = second.right;
first = start.down;
second = first.down;
start = start.down;
# Function to create the loop
# for each column
def createLoopForEachColumn(head):
first = None;
last = None;
first = head;
last = first;
while (last.down):
last = last.down;
# Run while loop to create
# loop for each column
while (first or last):
last.down = first;
first = first.right;
last = last.right;
# Function to create the loop
# for each row
def createLoopForEachRow(head):
first = None;
last = None;
start = None;
start = head;
first = head;
last = first;
while (last.right):
last = last.right;
# Run while loop to create
# loop for each row
while (first.down != start):
last.right = first;
first = first.down;
last = last.down;
last.right = first;
# Function to display the structure
# of the list
def display(head):
# Pointer to move right
rPtr = None
# Pointer to move down
dPtr = head;
# Pointer to stop printing
start = head;
# Loop till node.down is not None
while (dPtr.down != start):
rPtr = dPtr;
# Loop till node.right is
# not None
while (rPtr.right != dPtr):
print(rPtr.data, end = ' ')
rPtr = rPtr.right;
print(rPtr.data)
dPtr = dPtr.down;
rPtr = dPtr;
# Loop till node.right is
# not None
while (rPtr.right != dPtr):
print(rPtr.data, end=' ')
rPtr = rPtr.right;
print(rPtr.data)
def createLoopInList( k):
# Create k singly Linked List each
# first node of all list contain
# address of it's below first node
head = createKsinglyLinkedList(k);
mergeKListWithDownPointer(head);
createLoopForEachColoumn(head);
createLoopForEachRow(head);
display(head);
# Diver code
if __name__=='__main__':
K = 4;
# Create the list structure
createLoopInList(K);
# This code is contributed by rutvik_56
C#
// C# program to recursively create
// loopy linked list with four
// pointer left, right, up, down
// by given value K without using
// array of pointer and 2D matrix
using System;
class GFG{
// Struct node of circular linked
// list with four pointer
// next, prev, up, down
class Node
{
public int data;
public Node left;
public Node right;
public Node up;
public Node down;
};
// Function to create a new node
static Node createNode(int value)
{
Node temp = new Node();
temp.data = value;
temp.left = null;
temp.right = null;
temp.up = null;
temp.down = null;
return temp;
}
// Function to create Singly list
// whose nodes are connected with
// right pointer
static Node createListWithRightPointer(int k,
int i)
{
if (i > k)
return null;
Node node = createNode(i);
// Recursively call the function to
// create list with the right pointer
node.right = createListWithRightPointer(k,
i + 1);
return node;
}
// Function to create the k singly
// linked list and first node of
// each list is connected with
// down pointer
static Node createKsinglyList(int k)
{
int rNum = 1;
int limit = k;
Node head = null;
Node rowPointer = null;
// Loop to create the k singly list
// for each list first node points
// to its below node by down pointer
for(int i = 1; i <= k; i++)
{
Node templist =createListWithRightPointer(limit,
rNum);
if (head == null)
{
head = templist;
rowPointer = head;
}
else
{
rowPointer.down = templist;
rowPointer = rowPointer.down;
}
rNum = rNum + k;
limit = limit + k;
}
return head;
}
// Function to merge all list with
// level wise via down pointer
static void mergeKListWithDownPointer(Node head)
{
Node first = null;
Node second = null;
Node start = head;
first = start;
second = first.down;
// Run while loop to merge k list
// row wise with down pointer
while (second != null)
{
while (first != null || second != null)
{
first.down = second;
first = first.right;
second = second.right;
}
first = start.down;
second = first.down;
start = start.down;
}
}
// Function to create the loop
// for each column
static void createLoopForEachColumn(Node head)
{
Node first = null;
Node last = null;
first = head;
last = first;
while (last.down != null)
{
last = last.down;
}
// Run while loop to create
// loop for each column
while (first != null || last != null)
{
last.down = first;
first = first.right;
last = last.right;
}
}
// Function to create the loop
// for each row
static void createLoopForEachRow(Node head)
{
Node first = null;
Node last = null;
Node start = null;
start = head;
first = head;
last = first;
while (last.right != null)
{
last = last.right;
}
// Run while loop to create
// loop for each row
while (first.down != start)
{
last.right = first;
first = first.down;
last = last.down;
}
last.right = first;
}
// Function to display the structure
// of the list
static void display(Node head)
{
// Pointer to move right
Node rPtr;
// Pointer to move down
Node dPtr = head;
// Pointer to stop printing
Node start = head;
// Loop till node.down is not null
while (dPtr.down != start)
{
rPtr = dPtr;
// Loop till node.right is
// not null
while (rPtr.right != dPtr)
{
Console.Write(rPtr.data + " ");
rPtr = rPtr.right;
}
Console.Write(rPtr.data + " ");
Console.Write("\n");
dPtr = dPtr.down;
}
rPtr = dPtr;
// Loop till node.right is
// not null
while (rPtr.right != dPtr)
{
Console.Write(rPtr.data + " ");
rPtr = rPtr.right;
}
Console.Write(rPtr.data + " ");
Console.Write("\n");
}
static void createLoopInList(int k)
{
// Create k singly Linked List each
// first node of all list contain
// address of it's below first node
Node head = createKsinglyList(k);
mergeKListWithDownPointer(head);
createLoopForEachColoumn(head);
createLoopForEachRow(head);
display(head);
}
// Driver code
public static void Main(String[] args)
{
int K = 4;
// Create the list structure
createLoopInList(K);
}
}
// This code is contributed by 29AjayKumar
Javascript
输出:
1 2 3 4
5 6 7 8
9 10 11 12
13 14 15 16
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。