C++/C
wt0427
这个作者很懒,什么都没留下…
展开
-
二叉树的实现
/********************************************************** Description:参数传递:C++ 二叉树的实现以及指针使用注意事项* Author:charley* DateTime:2010-12-8 11:00* Compile Environment:win7+vs2008******************转载 2012-06-10 20:38:32 · 340 阅读 · 0 评论 -
http://www.zdf.de/ZDFmediathek/beitrag/video/1819992/ZDFzoom-Verschoben%252C-Verplant%252C-Verbaut?b
http://www.zdf.de/ZDFmediathek/beitrag/video/1819992/ZDFzoom-Verschoben%252C-Verplant%252C-Verbaut?bc=sts;stt&flash=off转载 2013-01-17 22:28:53 · 2706 阅读 · 0 评论 -
C语言编写的贪食蛇程序.c
//家谱的建立与查询#include "stdio.h"#include "stdlib.h"typedef struct node{char name;char sex;int age;int flag;}node;typedef struct ft{struct node l;struct node m;struct转载 2012-11-09 23:53:23 · 706 阅读 · 0 评论 -
C语言编写的贪食蛇程序.c
static int x[500]={0},y[500]={0};static int N,Tx,Ty,tiex=555,tiey=375,lastfoodx=55,lastfoody=55;#include void makefood(){x[N+1]=lastfoodx+30,y[N+1]=lastfoody+20;if(x[N+1]>=600){x[N转载 2012-11-09 23:52:15 · 961 阅读 · 0 评论 -
计算器源码
#include #include #include #include #include #define ZERO 0#define LEN sizeof(struct Node) // 结构体的大小#define SIZE 21 // 操作数的最大长度// 表达式解析分段后的节点,可以是操作数,也可以是运算符号struct Node {ch转载 2012-11-09 23:46:05 · 543 阅读 · 0 评论 -
逆矩阵算法三
# include "stdio.h" # define M 3 void main ( ) { float MAT[M][2*M]; float MAT1[M][M]; float t; int i,j,k,l; /***********************************************/转载 2012-06-10 20:47:38 · 414 阅读 · 0 评论 -
单链表的各种操作
/*单链表的各种操作*/# define null 0typedef char ElemType; /* 字符型数据*/typedef struct LNode{ElemType data;struct LNode *next;};setnull(struct LNode **p);int length (struct LNode *转载 2012-06-10 20:39:42 · 310 阅读 · 0 评论 -
常用排序算法汇总(C版)
/***************************************************************************** * sort.c * * Implementation for sort algorithms. * * Qch, 2011-05 **********转载 2012-06-10 20:32:12 · 371 阅读 · 0 评论 -
动态规划算法计算网络的最长路线和最短路线
/** File: longest.c* Desciption: 动态规划算法计算网络的最长路线和最短路线* Created: 2001/12/2* Author: Justin Hou [mailto:justin_hou@hotmail.com]**/#include #define N 7转载 2012-06-10 20:52:34 · 641 阅读 · 0 评论 -
逆矩阵算法二
#define N 5 /*[注]:修改6为你所要的矩阵阶数*/ #include "stdio.h" #include "conio.h" /*js()函数用于计算行列式,通过递归算法实现*/ int js(s,n) int s[][N],n; {int z,j,k,r,total=0; int b[N][N];/*b[N][N]用于存放,在转载 2012-06-10 20:45:54 · 556 阅读 · 0 评论 -
逆矩阵算法一
#include "stdio.h" float z[4][4],*y=z; /*定义一个全局二维数组用来存放N-1阶余子式,因为A的伴随矩阵除以|A|时会产生小数,因此定义成float而非int*/ int js(int *p,int n) /*计算行列式的函数*/ {int k=0,i,s2=0,s1=0,j,s,t; printf("\转载 2012-06-10 20:44:36 · 639 阅读 · 0 评论 -
动态规划算法计算网络的最长路线和最短路线
/** File: longest.c* Desciption: 动态规划算法计算网络的最长路线和最短路线* Created: 2001/12/2* Author: Justin Hou [mailto:justin_hou@hotmail.com]**/#include #define N 7转载 2012-06-10 20:41:36 · 384 阅读 · 0 评论 -
C语言读写配置文件
/************************************************************************/ /* make0000@msn.com */ /************************************************************************/ /***转载 2012-06-10 20:36:46 · 341 阅读 · 0 评论 -
逆矩阵算法三
# include "stdio.h" # define M 3 void main ( ) { float MAT[M][2*M]; float MAT1[M][M]; float t; int i,j,k,l; /***********************************************/转载 2012-06-10 20:46:20 · 979 阅读 · 0 评论 -
线性化二叉树
#include#includestruct node{int data;struct node *lh,*rh;int ltag,rtag;}*pr,*t,*s[30];struct node* creat(){struct node *t,*q;int i,x,j;printf("i,x=");scanf("%d%d",&i,&x);转载 2012-06-10 20:42:52 · 784 阅读 · 0 评论 -
矩阵最短路径-动态规划算法
#include<limits.h>#include<stdio.h>#include<stdlib.h>#include<string.h>#defineMIN_VAL(x,y)((x)>(y)?(y):(x))#defineMAX_LEN10int**record;...原创 2019-10-06 09:28:53 · 770 阅读 · 0 评论