程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Leetcode_num7_Linked List Cycle

Leetcode_num7_Linked List Cycle

編輯:C++入門知識

Leetcode_num7_Linked List Cycle


題目:

Given a linked list, determine if it has a cycle in it.

Follow up:
Can you solve it without using extra space?

這是一道關於鏈表比較簡單的題,很順利就解決了,不多說啦,上代碼啦

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    # @param head, a ListNode
    # @return a boolean
    def hasCycle(self, head):
        if head==None:
            check=False
        else:
            check=True
            node=head
            while(node.val!=0):
                node.val=0
                node=node.next
                if node==None:
                    check=False
                    break
        return check


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved