本文分类:news发布日期:2024/11/14 1:40:24
相关文章
Redis设计与实现 学习笔记 第十六章 Sentinel
Sentinel(哨岗、哨兵)是Redis的高可用性(high availability)解决方案:由一个或多个Sentinel实例(instance)组成的Sentinel系统可以监视任意多个主服务器,以及这些主服务器属下的从服…
建站知识
2024/11/13 20:50:41
C++ | Leetcode C++题解之第557题反转字符串中的单词III
题目: 题解:
class Solution {
public:string reverseWords(string s) {string ret;int length s.length();int i 0;while (i < length) {int start i;while (i < length && s[i] ! ) {i;}for (int p start; p < i; p) {ret.push…
建站知识
2024/11/13 21:26:42
数据结构 -RB Tree
博客主页:【夜泉_ly】 本文专栏:【数据结构】 欢迎点赞👍收藏⭐关注❤️ 文章目录 💡红黑树📖 简介✨ 特点📏 规则🛤️ 路径 ➕ 插入📏 规则📝 具体示例💻 代…
建站知识
2024/11/13 23:26:43
【SpringBoot】ThreadLocal线程空间上下文使用
封装BaseContext操作的工具类
public class BaseContext {public static ThreadLocal<Long> threadLocal new ThreadLocal<>();public static void setCurrentId(Long id) {threadLocal.set(id);}public static Long getCurrentId() {return threadLocal.get();}…
建站知识
2024/11/13 21:34:40
C语言 | Leetcode C语言题解之第556题下一个更大元素III
题目: 题解:
int nextGreaterElement(int n){int x n, cnt 1;for (; x > 10 && x / 10 % 10 > x % 10; x / 10) {cnt;}x / 10;if (x 0) {return -1;}int targetDigit x % 10;int x2 n, cnt2 0;for (; x2 % 10 < targetDigit; x2…
建站知识
2024/11/13 17:57:37
JavaScript 代码规范
JavaScript 代码规范
JavaScript 是一种广泛使用的编程语言,尤其在网页开发中扮演着核心角色。为了确保代码的质量、可维护性和团队协作效率,遵循一定的代码规范变得至关重要。本文将详细介绍 JavaScript 代码规范,包括命名规则、编码风格、…
建站知识
2024/11/13 22:55:13
堆中的时间复杂度+TOP K问题
堆中的时间复杂度分析
回顾: 堆在物理上:数组 逻辑上:完全二叉树
1.堆排序是什么?
// 排升序void HeapSort(int* a, int n){// 建大堆 -for (int i (n - 1 - 1) / 2; i > 0; --i){AdjustDown(a, n, i);}int end n - 1;while (end > 0){Swap(&a[0], &a[end]…
建站知识
2024/11/13 20:44:41