leetcode
大吉大利,今晚AC
2021届合肥工业大学软件工程毕业
展开
-
leetcode 4. Median of Two Sorted Arrays
//对于有限的数集,可以通过把所有观察值高低排序后找出正中间的一个作为中位数。如果观察值有偶数个,通常取最中间的两个数值的平均数作为中位数。 //其实就是把nums1和nums2合并排序 //然后如果是奇数个就取中间的数 //如果是偶数个就让中间两个数相加再除以2吧 class Solution { public: double findMedianSortedArrays(vector&l...原创 2019-02-16 15:36:20 · 111 阅读 · 0 评论 -
leetcode 5. Longest Palindromic Substring
class Solution { public: int mx; int Si, Ei; string longestPalindrome(string s) { if(s.length() == 0) return ""; Si = 0; Ei = 1; for(int i = 0; i < s.le...原创 2019-02-16 15:40:35 · 147 阅读 · 0 评论 -
leetcode 3. Longest Substring Without Repeating Characters
class Solution { public: int lengthOfLongestSubstring(string s) { set<char> set; int len = 0; int lo = 0; int hi = 0; while(hi < s.length()){ ...原创 2019-02-13 12:56:26 · 132 阅读 · 0 评论 -
leetcode 11. Container With Most Water
class Solution { public: int maxArea(vector<int>& height) { int water = 0; int i = 0, j = height.size() - 1; while (i < j) { int h = min(height[i]...原创 2019-03-18 20:42:10 · 150 阅读 · 1 评论