
C/C++
Emdfans
如果某方面不如别人就早起点晚睡点少玩点多学点
展开
-
巴斯卡三角形
/* 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 6 15 20 15 6 1 1 7 21 35 35 21 7 1 1原创 2013-09-17 10:13:37 · 798 阅读 · 0 评论 -
专题三-可复用静态链表
//main.c文件#include #include #include "StaticList.h"/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { Stati原创 2013-12-03 10:56:13 · 733 阅读 · 0 评论 -
[转] 克服C语言gets函数缺陷的方法初探
转自:http://blog.youkuaiyun.com/wangzhicheng1983/article/details/7780508克服C语言gets函数缺陷的方法初探 一 gets函数简介 gets函数是C语言用于从stdin流中读取字符串的函数。gets函数接收用户从键盘上输入的字符直到遇到回车时终止。原型是: char* gets(char *buff); 举转载 2013-12-03 15:23:03 · 910 阅读 · 0 评论 -
编程之美->N!末尾0个数
/* 给定一个整数N,那么N阶乘N!末尾有多少个0呢?例如:N=10, N!=3628800,N!的末尾有2个0.*/#include int main(){ int i, ret, j, N; ret = 0; printf("输入N:"); scanf("%d", &N); //解法一 for (i=1; i<=N; i++) {原创 2013-09-17 10:02:35 · 844 阅读 · 0 评论 -
[转]去掉字符串中重复的字符 --- 华为笔试题
转载:http://blog.youkuaiyun.com/vincent040/article/details/6902631题目如题所示,将 “google” 弄成“gole”后来自己修改了下部分代码,代码如下:/* 将 “google” 弄成“gole”*/#include #include #define REDUNDANT -1 void strip转载 2013-12-30 13:33:03 · 2482 阅读 · 0 评论 -
[转] C语言**位运算**终极剖析 分析的很详细
转自:http://blog.youkuaiyun.com/vincent040/article/details/6095203C语言有时候被称为中级语言 ,即介于低级与高级之家的编程语言,原因是C语言不仅具有高级语言抽象机制,也具有低级语言直接操作变量个别位的能力,即我们即将要讨论的C语言强大的位 操作运算。C语言的这种能力也许会让你感到奇怪,但这种能力有时确实是必须的,或者至少是有用的,例如我转载 2014-01-12 21:45:59 · 970 阅读 · 0 评论 -
C语言文件操作函数大全
C语言文件操作函数大全clearerr(清除文件流的错误旗标) 相关函数 feof表头文件 #include 定义函数 void clearerr(FILE * stream); 函数说明 clearerr()清除参数stream指定的文件流所使用的错误旗标。 返回值 fclose(关闭文件) 相关函数 close,fflush,fopen,setbuf原创 2014-06-06 11:02:23 · 627 阅读 · 0 评论 -
Watchdog驱动测试程序
课堂实践2:•micro2440开发板上,watchdog的驱动已经编译进内核,参照教材PP290-291页的程序,编写watchdog驱动的测试程序。•看门狗驱动程序位于开发板内核源文件(仅供参考):–Linux-2.6.29/drivers/watchdog/s3c2410_wdt.c#include #include #include //UNIX标原创 2013-12-03 11:14:38 · 2496 阅读 · 0 评论 -
[转]sscanf函数用法详解
sscanf() - 从一个字符串中读进与指定格式相符的数据. 函数原型: Int sscanf( string str, string fmt, mixed var1, mixed var2 ... ); int scanf( const char *format [,argument]... ); 说明: sscanf与scanf类似,都是用于输入的,只转载 2014-07-04 18:09:49 · 624 阅读 · 0 评论 -
[转]sprintf函数用法详解
sprintf() 格式化输出函数(图形)功能: 函数sprintf()用来作格式化的输出。用法: 此函数调用方式为int sprintf(char *string,char *format,arg_list);说 明: 函数sprintf()的用法和printf()函数一样,只是sprintf()函数给出第一个参数string(一般为字符数组),然后再调用 outtextxy()函数转载 2014-07-04 18:11:39 · 25113 阅读 · 0 评论 -
QT 延时函数
void MainWindow::usleep(unsigned int msec){#if 1 /* 方法1 */ QElapsedTimer t; t.start(); while (t.elapsed() < msec) { QCoreApplication::processEvents(); }#endif#if 1 /* 方原创 2014-08-02 10:55:21 · 4944 阅读 · 0 评论 -
C语言 日期区间检测
需求大概是: 检索设备录像文件,通过时间段检索,文件名以 前缀_日期_时间.mp4 为准 分别提取 文件名里面的 年、月、日、时、分,再检测是否在某个时间段附上检测部分,是否完善,待测 961 962 #if 1 // 时间区间比较 963 if (m_year > ceiling.u32Year && m_year < floo原创 2015-06-29 20:09:26 · 1565 阅读 · 0 评论 -
[转]使用cJSON解析JSON字符串
转自:http://blog.youkuaiyun.com/lintax/article/details/50993958JSON学习-使用cJSON解析 使用cJSON解析JSON字符串 一、为何选择cJSON 我们在使用JSON格式时,如果只是处理简单的协议,可以依据JSON格式,通过对字符串的操作来进行解析与创建。然而随着协议逐渐复杂起来,经常会遇到一些未转载 2016-04-25 20:07:05 · 2971 阅读 · 0 评论 -
[转]进程间通过共享内存方式传输大数据
转自:blog.chinaunix.net/uid-20682890-id-3567309.html通过共享内存和信号量的乒乓机制实现大数据块在不同程序之间的数据传输。zips:https://nodeload.github.com/iskey/mem-share/zip/mastergit:https://github.com/iskey/mem-share.git转载 2016-09-22 09:37:47 · 5174 阅读 · 0 评论 -
专题二-可复用单链表
//main.c文件#include #include #include "LinkList.h"/* run this program using the console pauser or add your own getch, system("pause") or input loop *//*数据域结构体*/struct Value { LinkListNode head原创 2013-11-23 19:36:16 · 774 阅读 · 0 评论 -
面试题->motolola一面试题
#include int main(){ int a[5] = {1, 2, 3, 4, 5}; int* p1 = (int*)(&a + 1); int* p2 = (int*)((int)a + 1); int* p3 = (int*)(a + 1); printf("%d, %d, %d\n", p1[-1], p2[0], p3[原创 2013-09-17 09:52:32 · 820 阅读 · 0 评论 -
编程之美->二进制1的个数
/* 对于一个字节(8bit)的变量,求其二进制表示中‘1’的个数,要求算法的执行效率尽可能的高。*/#include int main(){ int val, temp, i; i = 0; printf("请输入一个整数:", &val); scanf("%d", &val); temp = val; /*解法1 -- 通过对2求余 来判断最后原创 2013-09-17 09:54:57 · 837 阅读 · 0 评论 -
编程之美->N!最低位1的位置
/* 求N!的二进制表示中最低位1的位置 */#include int f(int n){ int i, sum; sum = 1; for (i=2; i<=n; i++) sum = sum * i; return sum;}int main(){ int n, sum, ret; ret = 0; printf("输入n:"); scanf("原创 2013-09-17 10:08:22 · 1042 阅读 · 0 评论 -
矩阵填数-倒填、螺旋、蛇形
/*矩阵倒填*/#include #define N 20int main(){ int i, j, n, m; int f[N][N] = {0}; printf("input a intger:"); scanf("%d", &n); printf("\n");原创 2013-09-17 10:21:41 · 2169 阅读 · 0 评论 -
贪吃蛇小游戏(C语言版本)
源码:http://download.youkuaiyun.com/detail/hailmy/4864687原创 2013-09-17 13:23:51 · 1367 阅读 · 0 评论 -
常见排序-冒泡排序
#include using namespace std;/*void bubbleup(int *ptr, int count){ for(int i=0; i<count; i=i+1) //for(int j=count-1; j>i; j=j-1) for(int j=i+1; j<count; j=j+1) if(*(ptr+j-1)>*(ptr+j)) {原创 2013-09-18 10:04:31 · 794 阅读 · 0 评论 -
常见排序-选择法排序
/* 选择法排序 假设需要对10个数进行排序,那么首先找出10个数里面的最小数,并和这个10个数的第一个(下标0)交换位置, 剩下9个数(这9个数都比刚才选出来那个数大),再选出 这9个数中的最小的数,和第二个位置的数(下标1)交换, 于是还剩8个数(这8个数都比刚才选出来的大).. 依次类推,当还剩两个数时,选出两个数的最小者放在第9个位置(下标8),于是就只剩下一个数了。 这个原创 2013-09-18 10:05:20 · 1044 阅读 · 1 评论 -
常见排序-希尔排序
#include #define N 10int main(){ int i, j, k, tmp; int F[N]; //保证增量为奇数 (N/2)%2==0 ? k=N/2+1 : k=N/2; for (i=0; i<N; i++) scanf("%d", &F[i]); while (k>0) { for (j=k; j<N; j++) { tm原创 2013-09-18 10:05:37 · 698 阅读 · 0 评论 -
常见排序-插入排序
#include int main(){ int i, j, tmp; int F[10]; for (i=0; i<10; i++) scanf("%d", &F[i]); for (i=1; i<10; i++) { tmp = F[i]; j = i - 1; while (F[j] < tmp) { F[j+1] = F[j]; j--;原创 2013-09-18 10:04:43 · 649 阅读 · 0 评论 -
常见排序-快速排序
/* * 快速排序 * */#include #define LEN 10void QuickSort(int * F, int low, int high);int FindPos(int * F, int low, int high);int main(){ int i; int F[] = {-2, 1, -45, 5, 4, -3}; QuickSort(原创 2013-09-18 10:05:50 · 690 阅读 · 0 评论 -
4.链式二叉树_静态_遍历
/* * 静态创建链式二叉树 先中后遍历 * */#include #include typedef struct Btnode { char data; //数据 struct Btnode* plchild; //左子树 struct Btnode* prchild; //右子树} BTNODE原创 2013-11-19 11:07:03 · 857 阅读 · 0 评论 -
专题二-可复用顺序线性表
正在看国嵌唐老师数据结构,留着记录//main.c文件#include #include #include "SeqList.h"/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *a原创 2013-11-22 15:14:02 · 819 阅读 · 0 评论 -
腾讯笔试题 求a^b<<2的计算结果 运算符优先级问题
腾讯的笔试题a = 6 ,b = 4 时求a^b考查优先级问题,移位操作优先级大于异或a = 6 = 0110b = 4 = 0100b a ^ b = 00000110 ^ 00010000 = 00010110 = 22转载 2017-05-16 11:46:37 · 1261 阅读 · 0 评论