摘要:
//////MD5加密/////////publicstringMD5Encrypt(stringEncryptString){if(string.IsNullOrEmpty(EncryptString)){throw(newException("密文不得为空"));}System.Security... 阅读全文
随笔分类 - 数据结构+算法
实现链表的初始化,按值查找,插入,删除
2015-09-14 09:03 by 只喝牛奶的杀手, 581 阅读, 收藏, 编辑
摘要:
#include #include #include #define OK 1#define ERROR 0#define TRUE 1#define FALSE 0typedef char ElemType;typedef struct Node /*结点类型定义*/{ElemType data;... 阅读全文
判断任一二叉树,是否为满二叉树.(输出二叉树,节点总数,二叉树深度)
2015-09-14 09:00 by 只喝牛奶的杀手, 524 阅读, 收藏, 编辑
摘要:
#include "stdio.h"#include "malloc.h"int count;typedef struct node{char data;struct node *LChild;struct node *RChild;}BiTNode,*BiTree;void creatbitree... 阅读全文