码迷,mamicode.com
首页 >  
搜索关键字:高精度    ( 1735个结果
高精度运算模板
#include<stdio.h> #include<string> #include<string.h> #include<iostream> using namespace std; //compare比较函数:相等返回0,大于返回1,小于返回-1 int compare(string str1 ...
分类:其他好文   时间:2020-08-09 14:21:42    阅读次数:81
Luogu2005 A/B Problem II
https://www.luogu.com.cn/problem/P2005 高精度除法 模板题,居然发现还没填上小学时高精除高精的坑(一定是我太菜了) 用减法模拟除法,只要大于除数,就暴力减,这一位的$ans++$ \(C++ Code:\) #include<cstdio> #include<i ...
分类:其他好文   时间:2020-07-29 21:16:06    阅读次数:54
AcWing 791. 高精度加法
AcWing 791. 高精度加法 #include <bits/stdc++.h> using namespace std; vector<int> add(vector<int> &A,vector<int> &B){ vector<int> C; int t=0; for(int i=0;i< ...
分类:Windows程序   时间:2020-07-28 14:29:43    阅读次数:82
AcWing 792. 高精度减法
AcWing 792. 高精度减法 #include <bits/stdc++.h> using namespace std; bool cmp(vector<int> &A,vector<int> &B){ if(A.size()!=B.size()) return A.size()>B.size ...
分类:Windows程序   时间:2020-07-28 14:29:02    阅读次数:75
AcWing 794. 高精度除法
AcWing 794. 高精度除法 #include <bits/stdc++.h> using namespace std; vector<int> div(vector<int> &A,int b,int &r){ vector<int> C; for(int i=A.size()-1;i>=0 ...
分类:Windows程序   时间:2020-07-28 14:27:06    阅读次数:80
AcWing 793. 高精度乘法
AcWing 793. 高精度乘法 #include <bits/stdc++.h> using namespace std; vector<int> mul(vector<int> &A,int b){ int t=0; vector<int> C; for(int i=0;i<A.size()| ...
分类:Windows程序   时间:2020-07-28 14:18:33    阅读次数:72
电池数字压力表适合无电源现场压力测量
电池数字压力表使用稳定性较好的扩散硅压力传感器作为其敏感元件来检测此过程中的介质压力。同时,内置的精密热电阻或热电偶可以检测仪器安装位置的环境温度。大型的三个半液晶显示屏,不锈钢接口和多种媒体兼容。主要用于石油化工,煤矿水利,电站大坝,汽车电子,液位测量等。具有防水防爆全封闭结构,特别适合无电源现场压力测量,调零装置,方便现场使用。  1.主屏幕具有5位LCD实时压力显示。  2.在跟踪模式和峰值
分类:其他好文   时间:2020-07-23 22:47:00    阅读次数:74
AD 导出Gerbe步骤
好记性不如烂笔头 1、先输出Gerber File 2、进入Gerber Setup 进行设置(注意单位,精度选择2:4即可,不用选择2:5高精度) 先点Used On 将有用的层自动勾选上,然后再仔细核对,将不需要的层取消gerber输出 钻孔光绘文件 在高级选项中,基本上保持默认,注意0缺省和坐 ...
分类:其他好文   时间:2020-07-18 00:28:43    阅读次数:76
【算法】【高精度】大数相关问题总结
常考 大数乘法 题目链接:https://leetcode-cn.com/problems/multiply-strings/ class Solution { public: string multiply(string num1, string num2) { string res(num1.s ...
分类:编程语言   时间:2020-07-16 12:20:14    阅读次数:64
述泰概述北斗授时及产品应用原理
随着科学技术的快速发展,时频领域对时间的精准度要求也越来越高,近年来,北斗卫星系统有了质的突破,北斗授时终端产品和方向的研究也逐渐成为热门话题。因此,对北斗授时的应用及授时精准度也有了新认识和更高的要求。 北斗授时类似于GPS授时,也是卫星授时的一种,采用中国的北斗导航系统进行高精度授时。而北斗授时 ...
分类:其他好文   时间:2020-07-14 18:40:40    阅读次数:126
1735条   上一页 1 2 3 4 5 6 ... 174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!