• 洛谷P4911 河童重工的计算机


    传送门

    题目背景

    河童重工业会社的计算机产品在幻想乡中有着极其广泛的应用。

    有一天,妖怪之山发大水啦!洪水夹杂着泥沙和滚木汹涌着冲进了河童的城市。

    本来河童们的机械设施都是防水的,可是洪水还是对城市造成了不小的破坏。其中,河童们的服务器被砸坏了!

    坏掉的电脑在短时间内不能修复,可是幻想乡里的许多事情都离不开河童们的服务器!河童们也很无奈,于是荷取找到了你!你作为一名优秀的信竞选手,决定帮助荷取,减轻服务器故障所带来的压力。

    题目描述

    你从荷取那里得到了一份纸质资料,扫描版在这里:

    Ktx-65式微处理器汇编语言规范文件.pdf

    (若此网站无法打开,请在附件中下载)

    (为什么说是扫描版呢,因为,你应该不能复制里面的文字)

    以下这一段是汇编教程附带的示例:

    [ progfunc.asm ]
    [ Shows the function functionailties of the KTX-65 ALI ]
    [main]
    wint #line; [output the current physical line number]
    wch 13; [putchar \r]
    wch 10; [putchar \n]
    callfunc $Function1;
    callfunc $Function2;
    hlt; [halt]
    function $Function1;
    rint %r1; [read int]
    add %r2 1 %r2; [loop contents]
    lle %r2 %r1; [loop conditions]
    jif 2; [end loop conditional jump]
    wint %r2; [output int]
    wch 13; [putchar \r]
    wch 10; [putchar \n]
    ret; [return]
    function $Function2;
    rint %r1; [read int]
    rint %r2; [read int]
    add %r1, %r2; [add]
    wint %val; [output value]
    wch 13; [putchar \r]
    wch 10; [putchar \n]
    ret; [return]

    你需要用洛谷评测机支持的语言编写一个程序,它读入一个Ktx-65汇编语言程序和一段输入,解释运行这个程序,然后输出这个程序输出的东西。

    输入格式

    第一行是一个整数N,表示汇编程序的行数。

    接下来N行是这个汇编程序,保证不会出现空行。

    接下来的所有行都是这个汇编程序的输入。

    输出格式

    一堆东西,表示这个汇编程序的输出。

    评测系统将以逐字节比较的方式判断你的输出是否正确。 假的,洛谷不支持。

    输入输出样例
    输入 #1复制
    5
    rint %r1;
    rint %r2;
    add %r1 %r2;
    wint;
    hlt;
    5 4
    输出 #1复制
    9

    说明/提示

    注意:样例输出中只有9这一个字节。

    对于10%的数据:程序中只有输入和输出的指令,且不会出现数字常量,也不会有注释。

    对于另外10%:程序中只有输入、输出和加法指令,且没有注释。

    对于另外30%:包括除函数调用和跳转在内的所有指令。

    对于剩下50%:指令没有限制。

    对于全部的数据:命令条数不超过50000条,剩余输入不超过500千字节,程序需要执行的步数不超过80000步。

    保证汇编程序和数据不出现编译或是运行时错误。

    保证程序输入足够满足汇编程序中读入的需要。

    不保证这是或不是一道毒瘤题

    不保证考试时会不会有人AC这道题

    不保证这次考试会不会有人AK

    保证出题人为:洩矢诹访子

    考试时打不开河童给的文件可以向我索要,不保证是否会回答

    其实这道题数据非常简单,只是量大而已

    上代码:

    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    
    #ifdef LOCAL
    #define debug(format, args...) \
    printf(format, ##args)
    #else
    #define debug(format, args...)
    #endif
    
    using namespace std;
    
    typedef map<string, int> msi;
    typedef map<int, int> mii;
    typedef stringstream SS;
    
    msi op2fun = {{"udef", 0}, {"hlt", 1}, {"nop", 2}, {"set", 3}, {"jmp", 4},
    {"jif", 5}, {"call", 6}, {"ret", 7}, {"inv", 8}, {"add", 9}, {"sub", 10},
    {"mult", 11}, {"idiv", 12}, {"mod", 13}, {"lsft", 14}, {"rsft", 15},
    {"band", 16}, {"bor", 17}, {"bxor", 18}, {"lgr", 19}, {"lls", 20},
    {"lge", 21}, {"lle", 22}, {"leql", 23}, {"land", 24}, {"lor", 25},
    {"rint", 26}, {"rch", 27}, {"wint", 28}, {"wch", 29}, {"function", 30}, {"callfunc", 31}};
    
    msi reg2pointer = {{"r1", 0}, {"r2", 1}, {"r3", 2}, {"r4", 3}, {"e1", 4},
    {"e2", 5}, {"e3", 6}, {"e4", 7}, {"flag", 8}, {"val", 9}, {"ret", 10}, {"line", 11}};
    mii funLine;
    mii funIndex;
    msi funNum;
    mii line2index;
    
    int r1, r2, r3, r4, e1, e2, e3, e4, flag, val, ret, line, falseVar, funCnt = 0, statementCnt = 0;
    
    int *reg[] = {&r1, &r2, &r3, &r4, &e1, &e2, &e3, &e4, &flag, &val, &ret, &line};
    
    int ram[(1 << 23) + 9];
    int sAddr[(1 << 19) + 9];
    
    struct data{
    	int* a;
    	int value;
    	int type;
    	void out(){
    		debug("\t%d %d\n", value, type);
    	}
    	data (int *A = &falseVar, int v = 0, int t = -1): a(A), value(v), type(t){	
    	}
    	void init(string &s, int L){
    		auto it = s.begin();
    		if (s[0] == '%'){
    			type = 0;
    			s.erase(it);
    			a = reg[reg2pointer[s]];
    		}
    		else if (s[0] == '@'){
    			if (s[1] == '%'){
    				type = 3;
    				s.erase(it);
    				s.erase(it);
    				a = reg[reg2pointer[s]];
    			}
    			else{
    				type = 2;
    				s.erase(it);
    				value = stoi(s);
    				a = &ram[value];
    			}
    		}
    		else if (s[0] == '#'){
    			a = &falseVar;
    			value = L;
    			type = 4;
    		}
    		else{
    			type = 1;
    			a = &falseVar;
    			value = stoi(s);
    		}
    	}
    };
    
    struct op{
    	int op;
    	data d[3];
    	int line, funLine;
    };
    
    int getValue(const op &a, int index){
    	int b = 0;
    	switch (a.d[index].type){
    		case 0:{
    		}
    		case 2:{
    			b = *(a.d[index].a);
    			break;
    		}
    		case 3:{
    			b = ram[*(a.d[index].a)];
    			break;
    		}
    		case 1:{
    			b = a.d[index].value;
    			break;
    		}
    		case 4:{
    			b = a.line;
    			break;
    		}
    	}
    	return b;
    }
    
    void fun0(const op &a, int &index){
    }
    void fun1(const op &a, int &index){
    }
    void fun2(const op &a, int &index){
    }
    void fun3(const op &a, int &index){
    	int b = getValue(a, 0);
    	*(a.d[1].a) = b;
    	debug("\nFun3: b: %d line: %X %X;\n", b, *(a.d[1].a), &line);
    }
    void fun4(const op &a, int &index){
    	int b = getValue(a, 0);
    	index = line2index[line + b];
    }
    void fun5(const op &a, int &index){
    	int Flag = getValue(a, 1);
    	int b = getValue(a, 0);
    	if (Flag){
    		index = line2index[line + b] - 1; 
    	}
    }
    void fun6(const op &a, int &index){
    	int &top = sAddr[0];
    	top++;
    	sAddr[top] = index;
    	debug("PushIndex: %d\n", index + 1);
    	top++;
    	sAddr[top] = line;
    	int b = getValue(a, 0);
    	index = line2index[b] - 1;
    }
    void fun7(const op &a, int &index){
    	int &top = sAddr[0];
    	int Line = sAddr[top];
    	line = Line;
    	top--;
    	int next = sAddr[top];
    	top--;
    	index = next;
    	debug("NextIndex: %d\n", next);
    	if (a.d[0].value != -1){
    		int b = getValue(a, 0);
    		ret = b;
    	}
    }
    void fun8(const op &a, int &index){
    	int b = getValue(a, 0);
    	b = -b;
    	*(a.d[1].a) = b;
    }
    void fun9(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b + c;
    	debug("\nFun9: b: %d c: %d ans: %d;\n", b, c, *(a.d[1].a));
    }
    void fun10(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b - c;
    }
    void fun11(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b * c;
    }
    void fun12(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b / c;
    }
    void fun13(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b % c;
    }
    void fun14(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b << c;
    }
    void fun15(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b >> c;
    }
    void fun16(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b & c;
    }
    void fun17(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b | c;
    }
    void fun18(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b ^ c;
    }
    void fun19(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = (b > c);
    }
    void fun20(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = (b < c);
    }
    void fun21(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = (b >= c);
    }
    void fun22(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = (b <= c);
    }
    void fun23(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = (b == c);
    }
    void fun24(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b && c;
    }
    void fun25(const op &a, int &index){
    	int b = getValue(a, 0);
    	int c = getValue(a, 1);
    	*(a.d[2].a) = b || c;
    }
    void fun26(const op &a, int &index){
    	cin >> *(a.d[0].a);
    }
    void fun27(const op &a, int &index){
    	cin >> *(a.d[0].a);
    }
    void fun28(const op &a, int &index){
    	cout << getValue(a, 0);
    }
    void fun29(const op &a, int &index){
    	cout << (char)getValue(a, 0);
    }
    void fun30(const op &a, int &index){
    	line = a.line;
    	debug("Line: %d\n", line);
    }
    void fun31(const op &a, int &index){
    	int b = funIndex[a.d[0].value];
    	debug("b: %d\n", b);
    	int &top = sAddr[0];
    	top++;
    	sAddr[top] = index;
    	debug("PushIndex: %d\n", index + 1);
    	top++;
    	sAddr[top] = line;
    	index = b - 1;
    }
    
    void (*fun[])(const op &a, int &index) = {
    	fun0, fun1, fun2, fun3, fun4, fun5, fun6, fun7, fun8, fun9, 
    	fun10, fun11, fun12, fun13, fun14, fun15, fun16, fun17, fun18, fun19, 
    	fun20, fun21, fun22, fun23, fun24, fun25, fun26, fun27, fun28, fun29, 
    	fun30, fun31
    };
    
    typedef vector<op> vo;
    
    int main(){
    	#ifndef LOCAL
    		ios::sync_with_stdio(0);
    		cin.tie(0);
    		cout.tie(0);
    	#endif 
    	int n;
    	cin >> n;
    	cin.get();
    	vo ops;
    	int funFlag = 0;
    	for (int i = 0; i < n; i++){
    		string line;
    		getline(cin, line, '\n');
    		transform(line.begin(), line.end(), line.begin(), ::tolower);
    		auto it = line.begin();
    		int zkh = 0;
    		for (; it < line.end(); it++){
    			if (zkh){
    				if (*it == ']'){
    					zkh--;
    				}
    				line.erase(it);
    				it--;
    			}
    			else{
    				if (*it == ','){
    					*it = ' ';
    				}
    				else if (*it == ';'){
    					*it = '\n';
    				}
    				else if (*it == '['){
    					zkh++;
    					line.erase(it);
    					it--;
    				}
    			}
    		}
    		SS ss(line);
    		string s;
    		while (getline(ss, s, '\n')){
    			SS ssTemp(s);
    			string command;
    			ssTemp >> command;
    			if (command.empty()){
    				continue;
    			}
    			string sTemp;
    			int cmd = op2fun[command];
    			if (!line2index.count(i)){
    				line2index[i] = statementCnt;
    			}
    			switch (cmd){
    				case 0:{
    				}
    				case 1:{
    				}
    				case 2:{
    					op T;
    					T.op = cmd;
    					T.line = i;
    					ops.push_back(T);
    					break;
    				}
    				case 5:{
    					string a, b;
    					int cnt = 0;
    					op T;
    					T.op = cmd;
    					T.line = i;
    					ssTemp >> a;
    					T.d[0].init(a, i);
    					if (!(ssTemp >> b) || b.empty()){
    						string fake = "%flag";
    						T.d[1].init(fake, i);
    					}
    					ops.push_back(T);
    					break;
    				}		
    				case 7:{
    					op T;
    					T.op = cmd;
    					T.line = i;
    					string a;
    					if (ssTemp >> a && !a.empty()){	
    					}
    					else{
    						a = "%ret";
    					}
    					T.d[0].init(a, i);
    					ops.push_back(T);
    					break;
    				}
    				case 4:{
    				}
    				case 6:{
    					op T;
    					T.op = cmd;
    					T.line = i;
    					string a;
    					ssTemp >> a;
    					T.d[0].init(a, i);
    					ops.push_back(T);
    					break;
    				}
    				case 8:{
    					string a, b;
    					ssTemp >> a;
    					if (ssTemp >> b && !b.empty()){
    					}
    					else{
    						b = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[1].init(b, i);
    					ops.push_back(T);
    					break;
    				}
    				case 3:{
    					string a, b;
    					ssTemp >> a >> b;
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[1].init(b, i);
    					ops.push_back(T);
    					break;
    				}
    				case 9:{
    				}
    				case 10:{
    				}
    				case 11:{
    				}
    				case 12:{
    				}
    				case 13:{
    				}
    				case 14:{
    				}
    				case 15:{
    				}
    				case 16:{
    				}
    				case 17:{
    				}
    				case 18:{
    					string a, b, c;
    					ssTemp >> a >> b;
    					if (ssTemp >> c && !c.empty()){
    					}
    					else{
    						c = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[1].init(b, i);
    					T.d[2].init(c, i);
    					ops.push_back(T);
    					break;
    				}
    				case 19:{
    				}
    				case 20:{
    				}
    				case 21:{
    				}
    				case 22:{
    				}
    				case 23:{
    				}
    				case 24:{
    				}
    				case 25:{
    					string a, b, c;
    					ssTemp >> a >> b;
    					if (ssTemp >> c){
    					}
    					else{
    						c = "%flag";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[1].init(b, i);
    					T.d[2].init(c, i);
    					ops.push_back(T);
    					break;
    				}
    				case 26:{
    					string a;
    					if (ssTemp >> a && !a.empty()){
    					}
    					else{
    						a = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[0].type = 5;
    					ops.push_back(T);
    					break;
    				}
    				case 27:{
    					string a;
    					if (ssTemp >> a && !a.empty()){
    					}
    					else{
    						a = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					T.d[0].type = 6;
    					ops.push_back(T);
    					break;
    				}
    				case 28:{
    					string a;
    					if (ssTemp >> a && !a.empty()){
    					}
    					else{
    						a = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					//T.d[0].type = 7;
    					ops.push_back(T);
    					break;
    				}
    				case 29:{
    					string a;
    					if (ssTemp >> a && !a.empty()){
    					}
    					else{
    						a = "%val";
    					}
    					op T;
    					T.op = cmd;
    					T.line = i;
    					T.d[0].init(a, i);
    					//T.d[0].type = 8;
    					ops.push_back(T);
    					break;
    				}
    				case 30:{
    					string a;
    					ssTemp >> a;
    					op T;
    					T.op = cmd;
    					T.line = i;
    					int num = 0;
    					if (!funNum.count(a)){
    						num = funNum[a] = funCnt++;
    					}
    					else{
    						num = funNum[a];
    					}
    					funIndex[num] = ops.size();
    					funFlag = 1;
    					T.d[0].value = i;
    					T.d[0].type = 10;
    					ops.push_back(T);
    					break;
    				}
    				case 31:{
    					string a;
    					ssTemp >> a;
    					op T;
    					T.op = cmd;
    					T.line = i;
    					int num = 0;
    					if (!funNum.count(a)){
    						funNum[a] = funCnt++;
    					}
    					num = funNum[a];
    					T.d[0].value = num;
    					T.d[0].type = 1;
    					ops.push_back(T);
    					break;
    				}
    			}
    			statementCnt++;
    		}
    	}
    	line = ops[0].line;
    	for (int i = 0; i < statementCnt; i++){
    		if (ops[i].op == 1){
    			return 0;
    		}
    		else{
    			fun[ops[i].op](ops[i], i);
    			debug("\n| op: %d; r1: %d; r2: %d; val: %d; line: %d; %%line: %d; index: %d; |\n", 
    				ops[i].op, r1, r2, val, ops[i].line, line, i);
    		}
    	}
    	return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
  • 相关阅读:
    adjustText库解决深度学习、视觉模型matplotlib画散点图时由于标签非常多导致的重叠现象
    使用Nacos bootstrap application 远程配置优先级
    leetcode(hot100)——贪心算法
    Python Day2 爬虫基础操作【初级】
    【springboot整合ES】springboot整合ES
    搭建一个属于自己的博客
    中低压母线装设弧光保护的必要性
    SpringCloudAlibaba-Sentinel流量监控
    Swift基础语法 - 可选项
    Object.prototype.toString.call() 和 instanceOf 和 Array.isArray() 详解
  • 原文地址:https://blog.csdn.net/lzx_xzl_______/article/details/126277880