I have a custom intranet application with no interoperability requirements. We programmatically construct a NetTcp channel in duplex mode to pass messages. We want to change the message encoding, b
Category: OS
Operating System (Operating System, referred to as OS) is a computer program that manages and controls computer hardware and software resources. It is the most basic system software that runs directly on the “bare metal”. Any other software must be supported by the operating system to run .
[Data Structure] Stack Surface Test — Summary with O (1) Time Complexity
Assuming a set of numbers is given, we need to complete the minimum value of this set of numbers in O(1) time complexity Solve.
Specific description of the title: Define a stack, please imple
“Data Structure” Chapter 1 Introduction Knowledge Summary Map Terrace 1132-12
Cannotep the SHIFT_JIS coding
I work a lot with Japanese annotation sources, so every time I open the source file, I have to do “Encoding/Character Set/ShiftJIS”. Can we make Notepad detect it automatically? I have tried many o
Leetcode # 11 Simple question (given a range, just hard coding ..)
Question: Integer to Roman Numerals
Question solution: The range is limited to 0-3999, hard-coded is good–too lazy to think about logic
class Solution {
public:
string intToRoman(in
Character encoding review and file basis (2)
1. Character encoding
Correspondence table of characters and numbers
ASCII: can recognize English characters, 1Byte=1 English characters
hello
8bit|8bit|8bit|8bit| 8bit
GBK:汉字与英文字符,2Byte=1中文
[Data Structure] Data Structure Overview
[Preface] Data structure as a basic knowledge for The importance of a good IT person is self-evident, but many friends feel that its content is difficult and much more difficult. Below we strive t
[Data Structure] B-tree (B-Tree)
B-tree
In 1970, R.Bayer and E.mccreight proposed a tree suitable for external search, which is a balanced polytree. Called B-tree. (B-tree is written in some places. Be careful not to misread
as
[Data Structure] Stack Surface Test – Two queues implement a stack
The last article wrote about using two stacks to implement a queue. This article implements using two queues to implement a stack. In fact, the ideas of both almost the same.
Continue drawing
[Data Structure] Creation and Traverse of Binary Trees
#include #include #include #include #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 100 /* Initial allocation of storage space*/typedef int Status;typedef char TElemType; /*