Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Create Loop linked list#47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
sneha281 wants to merge1 commit intoOmkarPathak:master
base:master
Choose a base branch
Loading
fromsneha281:sneha281-patch-1
Open
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletionsLoop linked list
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
# Python program to detect loop
# in the linked list

# Node class
class Node:

# Constructor to initialize
# the node object
def __init__(self, data):
self.data = data
self.next = None

class LinkedList:

# Function to initialize head
def __init__(self):
self.head = None

# Function to insert a new
# node at the beginning
def push(self, new_data):
new_node = Node(new_data)
new_node.next = self.head
self.head = new_node

# Utility function to print it
# the linked LinkedList
def printList(self):
temp = self.head
while(temp):
print (temp.data, end =" ")
temp = temp.next


def detectLoop(self):
s = set()
temp = self.head
while (temp):

# If we have already has
# this node in hashmap it
# means their is a cycle
# (Because you we encountering
# the node second time).
if (temp in s):
return True

# If we are seeing the node for
# the first time, insert it in hash
s.add(temp)

temp = temp.next


return False

# Driver program for testing
llist = LinkedList()
llist.push(20)
llist.push(4)
llist.push(15)
llist.push(10)

# Create a loop for testing
llist.head.next.next.next.next = llist.head;

if( llist.detectLoop()):
print ("Loop found")
else :
print ("No Loop ")



[8]ページ先頭

©2009-2025 Movatter.jp