Analysis and use of Redis five data structures and three advanced data structures

1, Foreword The most important and fundamental aspect of Redis is its rich data structure. The reason why Redis stands out is that it has rich data structure and can support a variety of scenarios. Moreover, Redis's data structure implementation and application scenarios are quite common in the interview. Next, let's talk about Redis's data st ...

Posted by wanted420 on Tue, 05 Oct 2021 17:03:07 -0700

The data structure and algorithm are a little messy. This series is only for yourself

catalogue Constant operation   Select sort XOR operation   Insert sort (On^2)   Binary search   Time complexity is an indicator of estimating constant operations Constant operation What has nothing to do with the amount of data is a fixed time thing, and what is related to the amount of data is not a constant oper ...

Posted by Stryves on Tue, 05 Oct 2021 14:47:42 -0700

PAT class a -- Complete Binary Search Tree (30)

More answers to PAT class a questions – acking-you.github.io subject OJ platform Topic analysis Main idea of the title: Binary search tree is no stranger to everyone. This problem requires you to construct a binary tree. The binary search tree is also a complete binary tree, and then print out its sequence traversal sequence ...

Posted by Talguy on Tue, 05 Oct 2021 13:15:47 -0700

[sduoj] deep understanding of buffer

2021SC@SDUSC introduction In a oj system, the core content is the judgment part. Whether it is a real user or a question judging machine, to detect whether the code written by the user is correct, you only need to compile the source file where the running code is located, and then compare whether the program output result is the same as the s ...

Posted by madchops on Mon, 04 Oct 2021 10:46:47 -0700

C + + STL stack, queue and priority_queue

In C language, we all know about stack and queue. C + + provides a better solution. STL can help developers reduce a lot of work. In other words, some big guys have helped us write these data structures and encapsulated them into a library. For these basic data structures, you can create a data structure object like using int and double. ...

Posted by Bailz on Sun, 03 Oct 2021 20:36:48 -0700

Insertion, search, deletion, sorting and inversion of single linked list in data structure of C language version

preface The function definition, header file, structure type and main function in this paper #include <stdio.h> #include <stdlib.h> #include <time.h> typedef struct LINK{ int data; struct LINK* next; }*link; link createlink(link ); void outlink(link ); void menu(link ); void deletelink(link ); link findlink(link ); ...

Posted by dcampbell18 on Sun, 03 Oct 2021 18:26:09 -0700

Java swap exchange, bubble sort, select sort, insert sort

catalogue swap exchange mode   Bit operation Mathematical calculation Through array exchange Bubble sorting Basic idea of bubble sorting Code design code implementation Time and space complexity Select sort Basic idea of selective sorting Code design code implementation Time and space complexity Insert sort Basic idea of in ...

Posted by rvpals on Sun, 03 Oct 2021 15:57:25 -0700

Zuo Cheng cloud algorithm Course Learning Notes - understanding O(NlogN) sorting

Recognize the ordering of O(NlogN) Analysis of recursive behavior and estimation of time complexity of recursive behavior Using recursive method to find the maximum value in an array, what is the system doing? Supplementary knowledge: the binocular operator "> >" refers to shifting one bit to the right, which is calculated in ...

Posted by slipster70 on Sun, 03 Oct 2021 12:43:52 -0700

Codeforces Round #744(Div.3)(A~E2)

Catalog A - Casimir's String Solitaire B - Shifting Sort (Violence) C - Ticks (Violence + Thinking) D - Productive Meeting (Greed + Thinking + Priority Queue) E1.Permutation Minimization by Deque E2.Array Optimization by Deque (Greedy+Discrete+Tree Array) A - Casimir's String Solitaire Topic: Gives a string consisting of only the le ...

Posted by thestars on Sun, 03 Oct 2021 09:38:15 -0700

Sequential Table (C++)

Sequence table Sequential table is a simple linear structure. Logically adjacent data is stored adjacent to each other in the computer. It can quickly locate the number of elements, allow null values in the middle, and move a large number of elements when inserting or deleting. Three elements of a sequence table Use elems to record ...

Posted by MadDawgX on Sun, 03 Oct 2021 09:31:32 -0700