• Latest Articles
  • Article Archive
  • About Us
Other Links
Copyright © 2024 Surfin Cloud Inc.
All rights reserved.

Articles under the 'Technology' tag

In-depth Understanding of Redis Data Structures - Dictionaries

A dictionary, also known as a symbolic table, associative array, or mapping, is an abstract data structure used to hold key-value pairs. In a dictionary, a key can be associated with a value, and these associated keys and values are called key-value pairs. The keys in a key-value pair are unique, a ... More >>
2023-01-12 Redis / Technology / Hash / Map

DFS & BFS, the two most basic algorithms in the traversal method

DFS(Depth first search)The following is a concrete example to understand. As shown in the figure, in a nine-box diagram, the green position represents the starting position, the red position represents the end position, the gray area and the border of the box diagram represents this road is not avai ... More >>
2022-12-29 Algorithms / DFS / BFS / Technology
1