相关文章
Leetcode—421.数组中两个数的最大异或值【中等】明天写一下字典树做法!!!
2023每日刷题(十九)
Leetcode—421.数组中两个数的最大异或值 算法思想
参考自灵茶山艾府
实现代码
class Solution {
public:int findMaximumXOR(vector<int>& nums) {int maxValue *max_element(nums.begin(), nums.end());int highId…
建站知识
2024/11/28 4:38:13
1028 List Sorting(25分)
题目翻译:
按照三种方式对结构体数组排序
题解思路:
模拟即可
代码:
#include<bits/stdc.h>
using namespace std;
int N;struct student
{string ID, name;int grade;
};bool comp1(student s1, student s2)
{return s1.ID < …
建站知识
2024/10/29 8:31:41
[python 刷题] 1248 Count Number of Nice Subarrays
[python 刷题] 1248 Count Number of Nice Subarrays
题目如下: Given an array of integers nums and an integer k. A continuous subarray is called nice if there are k odd numbers on it. Return the number of nice sub-arrays. 这道题和 1343 Number of S…
建站知识
2024/11/28 0:47:57
SpringBoot-SpringCache缓存
文章目录 Spring Cache 介绍常用注解 Spring Cache 介绍
Spring Cache 是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注解,就能实现缓存功能。
Spring Cache 提供了一层抽象,底层可以切换不同的缓存实现,…
建站知识
2024/11/28 2:30:06
MySQL数据库之表的增删查改
目录 表的操作1.创建表创建表案例 2.查看表结构3.修改表4.删除表 表的操作
1.创建表
语法:
CREATE TABLE table_name (field1 datatype,field2 datatype,field3 datatype
) character set 字符集 collate 校验规则 engine 存储引擎;说明: field 表示列…
建站知识
2024/11/28 2:46:53
小程序获取头像和昵称的思路
小程序获取头像和昵称的基本方法是调用小程序自带的API wx.getUserProfile(),这也是小程序官方目前最推荐的做法。成功获取用户名头像之后,小程序允许保存调用的结果,以便下一次打开页面的时候自动显示头像和名字。保存用户名和头像并不是保存…
建站知识
2024/11/28 2:45:41
Excel VBA开发基本语句说明
前言
VBA(Visual Basic for Applications)是一种用于编写宏的编程语言,它广泛应用于Microsoft Office套件中的各种应用程序,如Excel、Word、Access和PowerPoint等。在这些应用程序中,VBA可用于自动化任务、定制功能、…
建站知识
2024/11/28 2:49:16
Docker 学习路线 4:Docker 基础知识
Docker是一个平台,简化了在轻量、可移植的容器中构建、打包和部署应用程序的过程。在本节中,我们将介绍Docker的基础知识、其组件以及您需要开始使用的关键命令。
容器是什么?
容器是一个轻量级、独立的可执行软件包,包含运行应…
建站知识
2024/11/28 2:42:47