跪求要一个offer
跪求要一个offer
全部文章
分类
题解(178)
归档
标签
去牛客网
登录
/
注册
跪求要一个offer的博客
TA的专栏
12篇文章
0人订阅
算法和编程题解
12篇文章
275人学习
全部文章
(共183篇)
题解 | #高级操作符练习(2)#
select device_id,gender,age,university,gpa from user_profile where university="北京大学" or gpa>3.7;
Mysql
2021-11-01
0
392
题解 | #高级操作符练习(1)#
SELECT device_id,gender,age,university,gpa from user_profile where gender="male" and gpa>3.5;
Mysql
2021-11-01
0
487
题解 | #判断链表中是否有环#
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
C++
2021-10-31
0
247
题解 | #回文数字#
class Solution { public: /** * * @param x int整型 * @return bool布尔型 */ bool isPalindrome(int x) { long result; ...
C++
2021-10-29
0
306
题解 | #反转数字#
class Solution { public: /** * * @param x int整型 * @return int整型 */ int reverse(int x) { int shu[33]; lon...
C++
2021-10-29
0
343
题解 | #旋转数组的最小数字#
class Solution { public: int minNumberInRotateArray(vector<int> rotateArray) { int i; int min=rotateArray[0]; for(i=...
C++
2021-10-25
0
329
题解 | #用两个栈实现队列#
class Solution { public: void push(int node) { stack1.push(node); } int pop() { int result; while(stack1...
C++
2021-10-24
0
330
题解 | #包含min函数的栈#
//使用两个栈实现min函数 class Solution { public: stack<int> S; stack<int> S2; void push(int value) { S.push(value); } v...
C++
2021-10-22
0
418
题解 | #两数之和#
class Solution { public: /** * * @param numbers int整型vector * @param target int整型 * @return int整型vector */ vector&...
C++
2021-10-22
0
363
题解 | #删除有序链表中重复的元素-I#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solution { public: /** * * @param head ListNode类 ...
C++
2021-10-15
0
324
首页
上一页
10
11
12
13
14
15
16
17
18
19
下一页
末页