1074 宇宙无敌加法器 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805263297527808 第一次提交测试五没过:如果和为0,去0的时候保证要留下一个0(测试点5) 第二次AC: 1 #includ ...
分类:
其他好文 时间:
2020-01-17 23:23:06
阅读次数:
75
https://pintia.cn/problem-sets/12/problems/348 1 struct complex multiply(struct complex x, struct complex y) 2 { 3 struct complex ret; 4 5 ret.real = ...
分类:
其他好文 时间:
2020-01-17 13:55:22
阅读次数:
117
https://pintia.cn/problem-sets/12/problems/349 1 int set_grade(struct student *p, int n) 2 { 3 int i, count; 4 5 count = 0; 6 for (i = 0; i < n; i++) ...
分类:
其他好文 时间:
2020-01-17 13:13:39
阅读次数:
256
Redis是一款开源的、高性能的键-值存储(key-value store)。它常被称作是一款数据结构服务器(data structure server)。Redis的键值可以包括字符串(strings)、哈希(hashes)、列表(lists)、集合(sets)和 有序集合(sorted sets ...
分类:
其他好文 时间:
2020-01-17 11:48:44
阅读次数:
59
1078 字符串压缩与解压 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805262018265088 1 #include <cstdio> 2 #include <cstring> 3 #include ...
分类:
其他好文 时间:
2020-01-16 23:44:37
阅读次数:
83
https://pintia.cn/problem-sets/12/problems/346 这个程序的算法不难,因为没有学透标准输入和输出,特别是gets()函数。如果不用getchar()读取多余的'\n',程序就会运行错误。 1 #include <stdio.h> 2 #include <s ...
分类:
其他好文 时间:
2020-01-16 21:48:57
阅读次数:
97
1079 延迟的回文数 (20分) https://pintia.cn/problem-sets/994805260223102976/problems/994805261754023936 1 #include <cstdio> 2 #include <cstring> 3 #include <s ...
分类:
其他好文 时间:
2020-01-16 21:42:51
阅读次数:
70
https://pintia.cn/problem-sets/12/problems/342 1 bool palindrome(char *s) 2 { 3 int n, i, k; 4 bool ret; 5 6 n = strlen(s); 7 i = 0; 8 k = n - 1; 9 wh ...
分类:
其他好文 时间:
2020-01-14 20:59:58
阅读次数:
89
1009 说反话 (20分) 题目地址:https://pintia.cn/problem sets/994805260223102976/problems/994805314941992960 给定一句英语,要求你编写程序,将句中所有单词的顺序颠倒输出。 输入格式: 测试输入包含一个测试用例,在一 ...
分类:
其他好文 时间:
2020-01-13 22:04:56
阅读次数:
62
本文详细介绍和说明了mongodb复制集(Replica sets)+分片(Sharding)环境的搭建步骤和具体方法,记录于此,供各位同学及自己参考研究。 ...
分类:
数据库 时间:
2020-01-12 11:32:56
阅读次数:
118