一、知识点: 1.数据的基本类型: (1)整型 短整型(short) 整型(int) 长整形(long) (2)浮点型 单精度浮点型(float) 双精度浮点型(double) (3)字符型 数据的基本表现形式为常量和变量 2.常量和变量 (1)常量: 符号常量 整型常量 实型常量 字符型常量 常量 ...
分类:
其他好文 时间:
2016-12-24 07:49:06
阅读次数:
189
#include double sign(int x) { double y; if(x>0) y=1; else if(x double even(int n) { if(n%2==0) return 1; else return 0; } int main() { int n,sum=0; do... ...
分类:
其他好文 时间:
2016-12-24 07:49:29
阅读次数:
223
Given a non-empty array of integers, return the third maximum number in this array. If it does not exist, return the maximum number. The time complexi ...
分类:
其他好文 时间:
2016-12-24 07:48:28
阅读次数:
144
#include #include int sign(int x); double even(int n); int prime(int m); double countdigit(int number,int digit); int number(int m,int n); int main() ... ...
分类:
其他好文 时间:
2016-12-24 07:47:07
阅读次数:
225
一、知识点: 1.指针表量的概念: 变量可以用来存放数值(如整数、实数等),也可以用来存放地址(另一个变量的地址),这种专门用于储存指针(地址)的变量就称为指针变量。 2.指针变量的定义: 在定义指针变量时,需要用指针声明符“*”表示此变量并非一般变量,而是用来存放其他变量地址的指针变量。由于每一个 ...
分类:
其他好文 时间:
2016-12-24 07:47:13
阅读次数:
133
#include int main() { int a[6][6],i,j,n,sum; printf("Input n:"); scanf("%d",&n); for(i=0;i int main() { int a[10][10]; int i; int j; for(i=1;i=j) prin... ...
分类:
其他好文 时间:
2016-12-24 07:45:55
阅读次数:
160
#include void sum_diff(float op1,float op2,float *psum,float *pdiff) { *psum=op1+op2; *pdiff=op1-op2; } int main() { float op1,op2,*psum,*pdiff,sum,di... ...
分类:
其他好文 时间:
2016-12-24 07:46:04
阅读次数:
235
COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION The simplest scheme for partitioning available memory is to use fixed-s ...
分类:
其他好文 时间:
2016-12-24 07:45:54
阅读次数:
218
1.指针、数组和地址间的关系 ·数组的基地址是在内存中存储数组的起始位置,它是数组中第一个元素(下标为0)的地址,因此数组名本身是一个地址即指针值。 ·指针是以地址作为值的变量,而数组名的值是一个特殊的固定地址,可以把它看作是常量指针。 P=a; 等价于 P=&a[0]; p=a+1; 等价于 p= ...
分类:
其他好文 时间:
2016-12-24 07:45:55
阅读次数:
203
Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more letter at ...
分类:
其他好文 时间:
2016-12-24 07:44:15
阅读次数:
134
#include int main() { int i,n,a[10]; void sort(int a[],int n); printf("Input n(na[i]){ t=a[j]; a[j]=a[i]; a[i]=t; } ... ...
分类:
其他好文 时间:
2016-12-24 07:42:51
阅读次数:
159
我们非常荣幸地宣布 Visual Studio 2017 RC 现已推出! 此新版本包括我们最新的功能创新和改进。 注意 这里是 Visual Studio 2017 最新版本的发行说明。 这里是 Visual Studio 2017 最新版本的发行说明。 下载:Visual Studio Ente ...
分类:
其他好文 时间:
2016-12-24 07:45:30
阅读次数:
851
COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION Referring back to Figure 8.11, we have discussed three types of queues: ...
分类:
移动开发 时间:
2016-12-24 07:43:46
阅读次数:
355
本题要求在O(n)时间内求解。用delta储存相邻两个数的差,如果相邻的两个delta不同负号,那么说明子序列摇摆了一次。参看下图的nums的plot。这个例子的答案是7。平的线段部分我们支取最左边的一个点。除了最左边的边界点,我们要求delta != 0, 并且newDelta * delta < ...
分类:
其他好文 时间:
2016-12-24 07:43:01
阅读次数:
211
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the rans ...
分类:
其他好文 时间:
2016-12-24 07:43:14
阅读次数:
150
referred to: https://discuss.leetcode.com/topic/69137/java-o-1-accept-solution-using-hashmap-doublelinkedlist-and-linkedhashset Two HashMaps are used, ...
分类:
系统相关 时间:
2016-12-24 07:43:49
阅读次数:
286
引用知乎的回答:https://www.zhihu.com/question/37020798 怎么解释呢?因为 Gulp 和 browserify / webpack 不是一回事 Gulp应该和Grunt比较,他们的区别我就不说了,说说用处吧。Gulp / Grunt 是一种工具,能够优化前端工作 ...
分类:
Web程序 时间:
2016-12-24 07:40:24
阅读次数:
220