OMO届かないoffer
OMO届かないoffer
全部文章
分类
APUE(1)
Linux(6)
分布式(1)
单例模式(1)
日志系统(1)
未归档(31)
读书笔记(1)
归档
标签
去牛客网
登录
/
注册
OMO届かないoffer的博客
RUA!
全部文章
(共91篇)
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
15. 3Sum
题意:给一堆数,找和为0的三个数,把所有可能情况都返回,但没有重复。 思路 就是先把三个数的和为0转化成两个数的和为第一个数的相反数。先给数排序,按顺序选第一个数,然后后面按两数和来算。 说几个注意的地方: ①每次选了第一个数后做个判断,如果第一个数是正数,就可以直接break然后返回res了,...
2018-10-03
0
504
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页