问题描述: 顺序表,默认输入递增数列,设定删除区间,删除大于MIN并且小于MAX的数据 基础:visual studio 2017,用cpp写的c 源码呈现: 1 #include <stdio.h> 2 // 线性表的动态分配顺序存储结构 3 #define LIST_INIT_SIZE 20 / ...
分类:
其他好文 时间:
2020-03-12 23:21:34
阅读次数:
135
之前是两个数字比较大小并排序,现在是三位数比较大小并排序 无非就三种情况a>b或a>c或b>c #include<stdio.h>int main(){ float a, b,c, t; scanf("%f%f%f", &a, &b,&c); if (a>b) { t = b; b = a; a = ...
分类:
编程语言 时间:
2020-03-12 14:42:11
阅读次数:
59
This test report feedback from our customer real test project,he use this new product Autel MaxiIM608to read PIN code for Dodge smart key.And here is ...
分类:
其他好文 时间:
2020-03-11 19:50:17
阅读次数:
85
This test report feedback from our customer real test project,he use this new product Autel MaxiIM608to read PIN code for Dodge smart key.And here is ...
分类:
其他好文 时间:
2020-03-11 19:42:16
阅读次数:
61
题目链接 https://codeforces.com/contest/940/problem/F 题意 给出n个数字,q个询问; 每次询问有两种类型,一种是询问区间,一种是单体修改; 定义Ci为区间里数字 i 出现的次数,求Ci数组的mex ...
分类:
系统相关 时间:
2020-03-11 01:33:28
阅读次数:
94
cartographer 调参(2) ROS API 文档 1 Cartographer Node 这个节点用于线上实时SLAM 1.1 Subscribed Topics 下面三个距离数据的的话题是互斥的。至少需要一个。 1 scan (sensor_msgs/LaserScan) 1. 支持2D ...
#include<stdio.h>int main(){ int a1, a2; char c1, c2; scanf("%d%d", &a1, &a2); scanf("%c%c", &c1, &c2); printf("%d %d %c %c", a1, a2, c1, c2); } 输入10 ...
分类:
编程语言 时间:
2020-03-10 21:58:05
阅读次数:
385
题目: 输入n个整数,输出其中最小的k个。 输入 5 2 1 3 5 7 2 输出 1 2 代码: #include <iostream> #include <map> #include <set> using namespace std; /* 这题以空间换时间,将set和map结合的很好。当需要 ...
分类:
其他好文 时间:
2020-03-10 21:50:22
阅读次数:
59
demo 1 package com.bjsxt.hbase; 2 3 import java.io.IOException; 4 5 import org.apache.hadoop.conf.Configuration; 6 import org.apache.hadoop.hbase.Cell ...
分类:
编程语言 时间:
2020-03-10 19:46:43
阅读次数:
55
Problem Description 输入两点坐标(X1,Y1),(X2,Y2),计算并输出两点间的距离。 Input 输入数据有多组,每组占一行,由4个实数组成,分别表示x1,y1,x2,y2,数据之间用空格隔开。 Output 对于每组输入数据,输出一行,结果保留两位小数。 Sample In ...
分类:
其他好文 时间:
2020-03-10 16:20:10
阅读次数:
56