上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: An Introduction to Modular MathWhen we divide two integers we will have an equation that looks like the following:AB=Q remainder R\dfr... 阅读全文
posted @ 2015-04-02 02:00 vigorpush 阅读(162) 评论(0) 推荐(0) 编辑
摘要: https://www.youtube.com/watch?v=jEdaduyLLqY 阅读全文
posted @ 2015-04-02 01:42 vigorpush 阅读(150) 评论(0) 推荐(0) 编辑
摘要: here is a link for youtube about hash table which is super goodhttps://www.youtube.com/watch?v=h2d9b_nEzoA 阅读全文
posted @ 2015-04-02 01:20 vigorpush 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Question:What is the difference from NULL and "0"?Example:return NULL;return 0;Answer:Conceptually, zero (0) is a number, and NULL is ... 阅读全文
posted @ 2015-04-01 14:32 vigorpush 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 我们很多朋友都给我留言说,希望我翻译一下stackoverflow的问题以及答案,首先我也非常愿意为大家翻译,在可以帮助大家的同时,对我本人的技能的提升有好处;但是工作量实在太大,所以我不可能翻译所有的文章,尽力吧 阅读全文
posted @ 2015-04-01 14:24 vigorpush 阅读(202) 评论(0) 推荐(0) 编辑
摘要: enum day {Sun,Mon,Tue,Wed,Thu,Fri,Sat}; 默认情况下,枚举符的值从0开始,其后值总是前面一个+1。 即Sun=0,Mon=1,Tue=2,Wed=3,Thu=4,Fri=5,Sat=6 也可以自己定义数值,其后值总是前面一个+1 ... 阅读全文
posted @ 2015-04-01 12:36 vigorpush 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;class DequeEmptyException{public: DequeEmptyException() { cout data = element; tmp->n... 阅读全文
posted @ 2015-04-01 06:59 vigorpush 阅读(256) 评论(0) 推荐(0) 编辑
摘要: Question:I'm having trouble understanding this line:rear->next = temp;in this queue function: void Queue::enqueue(int data) { Node ... 阅读全文
posted @ 2015-04-01 06:50 vigorpush 阅读(164) 评论(0) 推荐(0) 编辑
摘要: matlab中disp()就是屏幕输出函数,类似于c语言中的printf()函数 阅读全文
posted @ 2015-04-01 06:38 vigorpush 阅读(1338) 评论(0) 推荐(0) 编辑
摘要: 本身就是matlab里的常数,直接输pi 阅读全文
posted @ 2015-04-01 05:41 vigorpush 阅读(691) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页