2014年5月16日

C++PRIMER 阅读笔记 第三章

摘要: 本章主要介绍 string vector 和 bitset, 不能贪多,现在本文主要介绍 string 与 vector头文件中最好不要使用namespace std, 因为头文件会直接被预处理器放置到C中std::string 的构造方式: string s1; string s2(s1); st... 阅读全文

posted @ 2014-05-16 16:49 berkeleysong 阅读(140) 评论(0) 推荐(0) 编辑

一个for循环打印二维数组

摘要: #include#define MAXX 2#define MAXY 3void printarray(){ int Arr[MAXX][MAXY] = {1,2,3,4,5,6}; for(int i = 0;i< MAXX*MAXY;i++) { printf("%d\... 阅读全文

posted @ 2014-05-16 11:00 berkeleysong 阅读(324) 评论(0) 推荐(0) 编辑

递归实现数组求和

摘要: #includeint sum(int* a, int n){ return (0 == n)?0:(sum(a,n-1) + a[n-1]);}void sum1(int* a, int n,int& s){ if(0 == n) return; else {... 阅读全文

posted @ 2014-05-16 10:51 berkeleysong 阅读(332) 评论(0) 推荐(0) 编辑

strlen 与 sizeof

摘要: #include#include#include#includeusing namespace std;int main(){ int a[] = {1,2,3,4,5}; int* b = a; char c[] = {'a','c','c'}; char* d = c; char e[] = "... 阅读全文

posted @ 2014-05-16 10:13 berkeleysong 阅读(124) 评论(0) 推荐(0) 编辑

导航