摘要: 在大神的基础上进行修改的代码,判断邮箱的正确格式 本代码在dev上边不能运行,在vc6.0上边也不能运行(在网上搜的说是要导入boost库),感觉麻烦就在VS2013上边运行了 #include "stdafx.h" #include<regex> #include<string> #include 阅读全文
posted @ 2015-05-19 22:11 wojiaohuangyu 阅读(9) 评论(0) 推荐(0)
摘要: 涉及到链表的建立、链表的输入、链表的输出、以及链表的归并、链表的插入 #include<iostream> #define OK 1 #define ERROR 0 using namespace std; typedef struct LNode{ int data; struct LNode * 阅读全文
posted @ 2015-05-19 22:10 wojiaohuangyu 阅读(10) 评论(0) 推荐(0)