4.7 練手

Leetcode 21. Merge Two Sorted Lists

 

一开始解决方式(特别慢,特别乱: beat 10%+ 我个菜

class Solution(object):
    def mergeTwoLists(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
        if l1 == None:
            return l2
        if l2 == None:
            return l1
        k = ListNode(0)
        if l1.val <= l2.val:
            keepList = l1
            aList = l2
            k.next = l1
        else:
            keepList = l2
            aList = l1
            k.next = l2
        
        while aList:
            indexVal = keepList.val
            #print(indexVal)
            #print(aList.val)
            if (aList.val >= indexVal):
                if(keepList.next == None):
                    keepList.next = aList
                    break
                else:
                    if(keepList.next.val > aList.val):
                        if(aList.next == None or aList.next.val >= keepList.next.val):
                            temp = aList.next
                            aList.next = keepList.next
                            keepList.next = aList
                            aList = temp
                            keepList = keepList.next.next
                        else:
                            temp = keepList.next
                            keepList.next = aList
                            keepList =  keepList.next.next
                            aList = temp
                            
                    else:
                        keepList = keepList.next
        return k.next

 

第二次: 60% + 就是运行时间不知道为什么比较玄学,代码如下:

class Solution(object):
    def mergeTwoLists(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
        if l1 == None:
            return l2
        if l2 == None:
            return l1
        root = ListNode(0)
        cur = root
        while l1 and l2:
            if(l1.val <= l2.val):
                cur.next = ListNode(l1.val)
                l1 = l1.next
            else:
                cur.next = ListNode(l2.val)
                l2 = l2.next
            cur = cur.next
        if l1:
            cur.next = l1
        if l2:
            cur.next = l2
        return root.next

 

决定看Discuss:

解法1. 也不太快的递归解法:(但是就是很神奇 Genius!

class Solution(object):
    def mergeTwoLists(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
        if not l1:
            return l2
        elif not l2:
            return l1
        elif l1.val < l2.val:
            l1.next = self.mergeTwoLists(l1.next, l2) 
            return l1
        else:
            l2.next = self.mergeTwoLists(l1, l2.next)
            return l2

 

well.好像其他解法也不太快的样子,可能是python语言本身的问题?(逃...

在 OpenCV 4.7 中,BFMatcher 类中确实没有 "knnMatch" 方法。相反,它有一个名为 "match" 的方法,该方法接受两个参数:查询描述符和训练描述符。如果您想使用 k 近邻匹配而不是普通匹配,请使用 FlannBasedMatcher 类,该类包含 "knnMatch" 方法。 如果您想使用 BFMatcher 类进行 k 近邻匹配,您可以使用 "match" 方法并手动选择最佳匹配。例如,您可以在查询描述符和训练描述符之间计算距离,并选择最接近的 k 个匹配项。最后,您可以将这些匹配项作为列表返回。 以下是一个示例代码片段,展示如何使用 BFMatcher 类进行 k 近邻匹配: ``` import cv2 # 读取图像和描述符 img1 = cv2.imread('image1.jpg', cv2.IMREAD_GRAYSCALE) img2 = cv2.imread('image2.jpg', cv2.IMREAD_GRAYSCALE) orb = cv2.ORB_create() kp1, des1 = orb.detectAndCompute(img1, None) kp2, des2 = orb.detectAndCompute(img2, None) # 创建 BFMatcher 对象 bf = cv2.BFMatcher() # 计算描述符之间的距离 matches = bf.match(des1, des2) # 选择最接近的 k 个匹配项 k = 2 top_matches = [] for m in matches: if len(top_matches) < k: top_matches.append(m) elif m.distance < top_matches[-1].distance: top_matches[-1] = m top_matches = sorted(top_matches, key=lambda x: x.distance) # 打印最佳匹配项 for m in top_matches: print(m.queryIdx, m.trainIdx, m.distance) ``` 请注意,上述代码片段仅为示例用途。在实际应用中,您可能需要根据您的具体需求进行更改和调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值