摘要: windows7 64位系统 安装完oracle 后的用法如下分享链接:http://www.2cto.com/database/201307/226853.html#comment_iframe安装完PL/SQL后 。当你登陆时。你会遇到各种那个疼的问题。例如: 监听程序在CONNECT_DATA... 阅读全文
posted @ 2014-10-14 22:41 xz55 阅读(297) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #pragma warning(disable:4996)typedef struct HuffmanTree{ int weight;//权值 int parent;//父节点 int left;//左子树 ... 阅读全文
posted @ 2014-07-23 10:27 xz55 阅读(174) 评论(0) 推荐(0) 编辑
摘要: /* 2014年5月21日 10:01:09 位运算符和逻辑运算符 */ int i = 5, k = 21; // 位运算符:& 按位于 printf("%d\n", i&k);//5,分别把这个两个数的二进制对比。只有同位两个数都是1,那么该位就为1,否则为0;例如:1&0=0,0&... 阅读全文
posted @ 2014-05-21 12:30 xz55 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include //声明函数//创建一个链表struct Node * create_list(void);//遍历链表中的内容void traverse_list(struct Node *);//链表的结构体struct Node{ //数据域 int d... 阅读全文
posted @ 2014-05-21 12:15 xz55 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 方法一:1.写一个controller的子类。然后需要写错误日志报告的控制器继承这个类即可: public class BaseController : Controller { protected override void OnException(ExceptionContext fi... 阅读全文
posted @ 2014-03-31 18:00 xz55 阅读(1028) 评论(0) 推荐(0) 编辑