OMO届かないoffer
OMO届かないoffer
全部文章
未归档
APUE(1)
Linux(6)
分布式(1)
单例模式(1)
日志系统(1)
读书笔记(1)
归档
标签
去牛客网
登录
/
注册
OMO届かないoffer的博客
RUA!
全部文章
/ 未归档
(共80篇)
33. Search in Rotated Sorted Array
题目: 假设按升序排序的数组在未知的某处旋转。(即[0,1,2,4,5,6,7]可能变为[4,5,6,7,0,1,2])。使用时间复杂度为O(logN)的方法查询数组内有没有target。 思路1:利用stl的map int search(vector<int>& nums...
2018-10-08
0
460
29. Divide Two Integers
题目: Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator. Return the quotient after d...
2018-10-07
0
375
28. Implement strStr()
不想说话 感觉智商收到了侮辱。。。 int strStr(string haystack, string needle) { return haystack.find(needle); }
2018-10-07
0
417
26. Remove Duplicates from Sorted Array
题目: 一组有序数组,删掉重复元素,返回剩下几个元素。 思路1: 利用set。 int removeDuplicates(vector<int>& nums) { set<int> st; for (auto i : nums) st.insert(i...
2018-10-07
0
459
23. Merge k Sorted Lists
题意: 给一堆已排序链表,合并成一个已排序链表 试了几个方法,最高的大概Runtime排行才71%,不过不知道这个runtime为什么每次都不一样,有的时候能到99%。。。还是我菜啊。 思路1: 就是和之前两个链表合并的思想一样,每次找所有链表里最大的头结点,移动。 ListNode* me...
2018-10-06
0
484
22. Generate Parentheses
题目: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set ...
2018-10-06
0
414
21. Merge Two Sorted Lists
(ps:我不明白为什么easy题的阅读量会比较高。。。。 题目: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nod...
2018-10-06
0
420
20. Valid Parentheses
题意: Given a string containing just the characters ‘(’, ‘)’, ‘{’, ‘}’, ‘[’ and ‘]’, determine if the input string is valid. An input string is valid ...
2018-10-05
0
447
19. Remove Nth Node From End of List
Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4->5, and n = 2...
2018-10-05
0
373
17. Letter Combinations of a Phone Number
题目: Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit ...
2018-10-04
0
509
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页