码迷,mamicode.com
首页 >  
搜索关键字:sorted    ( 5925个结果
Median of Two Sorted Arrays
描述: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexit ...
分类:其他好文   时间:2020-01-06 21:17:10    阅读次数:92
leetcode(14)-合并k个排序链表
合并?k?个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。 示例: 链接:https://leetcode cn.com/problems/merge k sorted lists 自己的思路 在k个链表中找到一个比较节点,然后把k个链表分成两部分,一部分都比比较节点小,一部分都比比较节 ...
分类:编程语言   时间:2020-01-04 16:17:48    阅读次数:90
leetcode 215. Kth Largest Element in an Array
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element. Example ...
分类:其他好文   时间:2020-01-03 21:27:13    阅读次数:104
图的Prim,Kruskal,Dijkstra,Floyd算法
代码部分有点问题,具体算法没问题, 最近期末考,要过段时间才会修改 //邻接矩阵,具体情况看上一篇的图的实现template<class T>class MGraph {public: MGraph(T a[], int n, int e); void DFS(int v); void BFS(in ...
分类:编程语言   时间:2020-01-03 09:12:23    阅读次数:70
第二次电话面试
坐标:北京 百度 地图内容生态部_推荐算法实习生 http://collabedit.com 如果i=5;那么 a=(++i)--;之后,a和i的值各是多少构造函数和析构函数必须要使用初始化列表 Python 列表和元组有什么不同? a = 0.1b = 0.2c = 0.3a + b == c a ...
分类:其他好文   时间:2020-01-02 18:42:39    阅读次数:83
[LC] 23. Merge k Sorted Lists
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example: Input: [ 1->4->5, 1->3->4, 2->6 ] Output: ...
分类:其他好文   时间:2020-01-01 11:48:12    阅读次数:88
4. 寻找两个有序数组的中位数
链接:https://leetcode cn.com/problems/median of two sorted arrays 给定两个大小为 m 和 n 的有序数组?nums1 和?nums2。 请你找出这两个有序数组的中位数,并且要求算法的时间复杂度为?O(log(m + n))。 你可以假设? ...
分类:编程语言   时间:2019-12-31 18:47:37    阅读次数:83
LeetCode——004-Median-of-Two-Sorted-Arrays
Description There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time c ...
分类:其他好文   时间:2019-12-31 01:21:16    阅读次数:63
leetcode 4.Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh ...
分类:其他好文   时间:2019-12-30 09:42:02    阅读次数:50
刷题顺序表 Array
题号 题目链接 说明 基础 27 Remove Element 26 Remove Duplicates from Sorted Array 80 Remove Duplicates from Sorted Array II 277 Find the Celebrity 189 Rotate Arr ...
分类:其他好文   时间:2019-12-29 12:57:11    阅读次数:77
5925条   上一页 1 ... 37 38 39 40 41 ... 593 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!