李顺利plus
李顺利plus
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
李顺利plus的博客
全部文章
(共90篇)
题解 | #调整数组顺序使奇数位于偶数前面(一)#
int* reOrderArray(int* array, int arrayLen, int* returnSize ) { // write cod...
C
C++
数组
2022-09-28
0
326
题解 | #二叉搜索树的最近公共祖先#
int lowestCommonAncestor(struct TreeNode* root, int p, int q ) { // write&nb...
C++
C
2022-09-27
0
207
题解 | #删除链表的节点#
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值...
Java
2022-09-27
0
221
题解 | #删除链表的节点#
struct ListNode* deleteNode(struct ListNode* head, int val ) { // write code...
C
2022-09-27
0
268
题解 | #调整数组顺序使奇数位于偶数前面(二)#
int* reOrderArrayTwo(int* array, int arrayLen, int* returnSize ) { // write...
C
2022-09-24
0
298
题解 | #哈夫曼树#
#include<stdio.h> struct tree { int weight; int left; int right; int...
C
2022-03-28
0
512
题解 | #查找#C
#include<stdio.h> int main(){ int n,m=0; char a[500]; scanf("%s",&a); ...
C
2022-03-28
0
376
题解 | #复数集合#C笨办法
#include<stdio.h> #include<iostream> #include<string> using namespace std; struct fushu{ int x; //实部 ...
C++
2022-03-28
0
373
题解 | #打牌#
#include<stdio.h> int main(){ char hand[105],desk[10]; while(scanf("%s",&hand)!=EOF){ &nbs...
C++
2022-03-28
0
432
题解 | #二叉排序树#暴力求解,非指针法
#include<stdio.h> struct tree { int weight; int left; int right; int...
C
2022-03-27
0
461
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页