CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - string to int

搜索资源列表

  1. vector

    0下载:
  2. 用vector<string> 来模拟大数(长度超过int 型整数长度)的存取和运算,初步实现了加法、减法、乘法、除法运算。 -With the vector <string> to simulate large numbers (integer length is longer than int) access and operations, the initial realization of addition, subtraction, multiplicati
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:6659
    • 提供者:明朗
  1. HighPrecision2

    0下载:
  2. 基于STL string的高精度计算 支持以string类为存放格式的整数的多精度运算(包括+、-、*、/(整除)、%(取余)、-(取负)、乘方、开平方),部分允许string式的“整型”与int型混合运算,支持正负号,结果一律用string 型存放(多精度对单精度取余(用int)除外!)-Based on STL string of high-precision calculation of support for string-type format for storing the mu
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:11950
    • 提供者:wang yucao
  1. BigNumber

    0下载:
  2. 直接引入 可以像int一样操作 跟Java里的好像 但好用多了 而且是加速版的,比用字符串写的还快(用vector<int>) 还附了些奇怪的函式 有兴趣自己写BigNumber的人可以参考看看 -Can be directly introduced to operate with the same as int in Java but it seems the more useful it is to speed up version of, than to
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:5064
    • 提供者:黃瀚生
  1. c_methods_of_quick_sort

    0下载:
  2. 几种快速排序的方法,对int类型数组排序,对char类型数组排序,对double类型数组排序,对结构体一、二级排序,对字符串进行排序,计算几何中求凸包的cmp-Several methods of quick sort, sort array of type int, the type of char array to sort, sort array of double type of the structure of primary and secondary sort, sort of s
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1045
    • 提供者:Chueng
  1. begoodatMATLAB6.5

    0下载:
  2. 本书第一章系统讲述 MATLAB6.5 的集成工作平台,引导读者初会MATLAB 基本用法。 第二、三章系统叙述MATLAB6.1 的四大基本数据类型(数值数组、字符串数组、元胞数组、构架数组),至于其它扩展数据类型(函数句柄、符号数据、内联函数、unit 数组、稀疏类)则另辟章节专述。此后,本书用九个独立章分述MATLAB6.5 的数值计算、符号计算、函数和数据可视、面向对象编程、GUI 交互操作界面设计、EXE 独立应用程序生成、实现不同软件平台交互的API、M-book 数据图形文字环
  3. 所属分类:matlab

    • 发布日期:2017-05-13
    • 文件大小:3465145
    • 提供者:yyj
  1. wregi_wszystkie_pole

    0下载:
  2. In addition, this class provides several methods for converting an int to a String and a String to an int, as well as other constants and methods useful when dealing with an
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:2778
    • 提供者:jjaca
  1. Huge

    0下载:
  2. It contain an implementation for string class and a class for huge numbers. In some practical usage of mathematics, we need to use numbers lager than long int and 64 bit integer numbers, for example we need a number with 100 digits to be multiple or
  3. 所属分类:Data structs

  1. sort

    0下载:
  2. 用快速排序算法,对大量数字(int)和字符串(string)进行排序,并对比算法运行时间和效率。-Using quick sort algorithm, a large number of digital (int) and string (string) to sort and compare the algorithm running time and efficiency.
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1467418
    • 提供者:sharp
  1. 2

    0下载:
  2. 题一:给出一个函数,原型为 int compare(char* dest,char* src) 要求比较两个字符串(由dest与src字符指针标识) 1,如果两字符串所含字母完全相同,则返回0; 2,如果两字符串所含字母相同(不区分大小写;A与a也算字母相同) ,则返回1 3,否则返回3-Topic 1: given a function prototype is int compare (char* dest, char* src) asked to compare
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-04
    • 文件大小:768
    • 提供者:shuming
  1. c-P-P-algorithm-procedures

    0下载:
  2. 程序开始运行,要求用户首先输入两个大数。 然后进行菜单选择,进行相应的大数运算。 分析说明:由于大数的范围太大,不能直接定义为int或者float等, 所以我们的想法就是定义成字符串类型, 输入的数字一位一位地存入字符数组里面。 然后在运算的时候也是一位一位地运算。 这个过程就得从最基本的数学运算法则做起,不乏多种判断。 涉及到数组和指针的应用。最难的就是判断情 况还有应用数组和指针过程中出现的多种未可预知的错误, 还得通过逐步调试慢慢找出。我们先从加减
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:275502
    • 提供者:yang
  1. The-Binary-Tree

    1下载:
  2. 构造一颗二叉排序树并实现其中元素的插入和删除。即先输入一串数据(int型),使计算机构造出一棵二叉排序树(限于C语言的表达,咱不在屏幕上使其输出)。然后按照屏幕提示,删除一个已有的数据,再构成一个新的二叉排序树。-Construct a binary sort tree and which elements insertions and deletions.To enter a string of data (int type), the computer constructed a binar
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:766
    • 提供者:wangchengqi
  1. The-Poly

    0下载:
  2. 内容为用起泡排序法实现元素的非递减排列.构造一颗二叉排序树并实现其中元素的插入和删除。即先输入一串数据(int型),使计算机构造出一棵二叉排序树(限于C语言的表达,咱不在屏幕上使其输出)。然后按照屏幕提示,删除一个已有的数据,再构成一个新的二叉排序树。-Construct a binary sort tree and which elements insertions and deletions.To enter a string of data (int type), the computer
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1002
    • 提供者:wangchengqi
  1. duilie

    0下载:
  2. 1.定义顺序队列类型,实现队列的所有基本操作。 2.定义链队列类型,实现队列的所有基本操作。 3.将字符串转换为整形,例如将“123”转换为int型的123。 -Define the order of the queue type, all the basic operations of the queue. Definition the chain queue types, all the basic operations of the queue. Will convert a
  3. 所属分类:Data structs

    • 发布日期:2017-11-08
    • 文件大小:2690
    • 提供者:pang
  1. key_Queue

    2下载:
  2. 3. 参考void Reverse(LinkQueue &Q)函数,定义新的函数int Palindrome_Test(char str[]),判断字符串str是否回文序列,若是则返回1,否则返回0。写出程序或用文字描述算法的执行步骤。-3. Reference void Reverse (LinkQueue & Q) function, define a new function int Palindrome_Test (char str []), to determine wheth
  3. 所属分类:Data structs

    • 发布日期:2015-11-25
    • 文件大小:6144
    • 提供者:黄瑜琳
  1. gtssssp

    0下载:
  2. 编写自定义函数int ctoi(char s[]),将字符串转换为对应的整数。其中 s是一个只包含数字的字符数组,函数返值为转换后所得整数。在main函数中验证结果。例如,字符串“512”转换后得到整数512。-Write a custom function int ctoi (char s []), to convert the string to the corresponding integer. Where s is a character array containing only
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:2598
    • 提供者:龙明溪
搜珍网 www.dssz.com