上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: /* * 瞬间判断2的幂 * coder:QPZ * time:2014-12-01 */ #include using namespace std; int main(void) { int n; cin>>n; if(!(n&(n-1))){ ... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(134) 评论(0) 推荐(0) 编辑
摘要: /* n!尾数有几个0 */#include using namespace std;void find0(int n); int find(int i,int n);int main(void){ int n; cin>>n; find0(n); return 0... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 排序算法思想描述---qpz一、直接选择排序法a) 核心思想:在无序区间寻找最值与无序区间首元素交换 遍历所有元素排序1. 记录无序区间第一个元素位置2. 向后遍历所有元素寻找最值位置(寻找最大值还是最小值取决于降序还是升序)3. 遍历结束以后找到最... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(179) 评论(0) 推荐(0) 编辑
摘要: /* * 装箱问题 * 算法:贪婪 * coder:qpz * time:2014-11-23 */#include #include using namespace std;#define MAX 20/*第一步:创建物品字典 */ typ... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int main( void ) { const double value = 12.3456789; cout << value << endl; // 默认以6精度,... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(329) 评论(0) 推荐(0) 编辑
摘要: /* N*N矩阵的旋转 不开辟新空间 programmer:qpz time:2014-11-09*/#include using namespace std;//#define MAX 3const int MAX=3;class cou{ priva... 阅读全文
posted @ 2014-12-15 20:57 机智的程序员小熊 阅读(180) 评论(0) 推荐(0) 编辑
摘要: /* 探索内存对齐 coder:瞿鹏志 */ #include #include using namespace std; #pragma pack (8)typedef struct node2{ int a;//4 char b;//4 }node_... 阅读全文
posted @ 2014-12-15 20:56 机智的程序员小熊 阅读(90) 评论(0) 推荐(0) 编辑
摘要: /* 最大公约数,最小公倍数 programmer:qpz time:2014-11-03*/#include #include #include #define MAX 10void delay(int a,int b){ int j,k; ... 阅读全文
posted @ 2014-12-15 20:56 机智的程序员小熊 阅读(164) 评论(0) 推荐(0) 编辑
摘要: /* Sort programmer:qpz time:2014-11-02*/#include #define MAX 10//冒泡排序法 void BubbleSort(int *data,int n);//直接插入排序法void StraightInsert... 阅读全文
posted @ 2014-12-15 20:56 机智的程序员小熊 阅读(147) 评论(0) 推荐(0) 编辑
摘要: /* vector function template programmer:qpz*/#include #include #define MAX 10using namespace std;class Myclass{private: vector vel;... 阅读全文
posted @ 2014-12-15 20:56 机智的程序员小熊 阅读(80) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页