1. Linked List Cycle II Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked ...
分类:
其他好文 时间:
2018-05-25 11:08:15
阅读次数:
167
一个十进制分数 $p/q$ 在 $b$ 进制下是有限小数的充要条件是 $q$ 的所有质因子都是 $b$ 的质因子。 First, if $p$ and $q$ are not coprime, divide them on $\gcd(p,q)$. Fraction is finite if and ...
分类:
其他好文 时间:
2018-05-22 16:41:46
阅读次数:
216
Graph补齐代码如下: 运行效果图如下: fraction 运行效果图: fraction函数的后半部分运行时出现了问题,暂时无法全部上传,预计于25号前上传。 对于类的项目,觉得就是先写一个完整的代码,然后把三部分拆开,改好文件格式,加入头文件。 ...
分类:
其他好文 时间:
2018-04-24 00:23:56
阅读次数:
238
1.实验内容2 graph.h graph.cpp main.cpp 截图 2.实验内容3 Fraction.h Fraction.cpp main.cpp 截图 ...
分类:
其他好文 时间:
2018-04-23 22:47:11
阅读次数:
198
1、Graph (1)用for循环内部定义i,j,k三个变量,i表示当前行,j控制空格输出,k控制符号输出。在第i行,输出size-i个空格,然后输出i*2-1个符号,最后换行后i++进行下一行的输出。 (2) (3)用dev C++运行结果截图: 2、Faction (1) Fraction -t ...
分类:
其他好文 时间:
2018-04-23 00:23:27
阅读次数:
170
Graph graph.h graph.cpp main.cpp Fraction 刚好之前学了运算符重载,就在这里当复习了。 fraction.h fraction.cpp include "stdafx.h" include "Fraction.h" include include using ...
分类:
其他好文 时间:
2018-04-22 22:06:41
阅读次数:
184
四.实验 Graph 1.类Graph的声明 2.类Graph的实现 3.类Graph的测试 4.运行结果 Fraction 1.类Fraction的声明 2.类Fraction的实现 3.类Fraction的测试 4.运行结果 五.总结 这次实验让我对类的使用有了更进一步的掌握,但在第二题中如何简 ...
分类:
其他好文 时间:
2018-04-22 18:10:00
阅读次数:
142
/** 数字金额大写转换(可以处理整数,小数,负数) */ function smalltoBIG(n) { var fraction = ['角', '分']; var digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖']; var ...
分类:
其他好文 时间:
2018-04-19 14:56:21
阅读次数:
124
``` include include include include include include include include include include const int N = 1e5 + 5; struct fraction { long long num, deno; temp ...
分类:
其他好文 时间:
2018-04-15 11:39:49
阅读次数:
216
float储存格式: sign(第1位)-exponent(第2-9位)-fraction(第10-32位) 符号位-指数位-小数位 double储存格式: sign(第1位)-exponent(第2-12位)-fraction(第12-64位) 符号位-指数位-小数位 在变量名相同时,局部变量会覆... ...
分类:
编程语言 时间:
2018-04-12 00:11:38
阅读次数:
192