易截截图软件、单文件、免安装、纯绿色、仅160KB

C' Fragment

把输入的一串字符转成数组,转成链表,然后删去其中指定的字符,在尾部添加一个字符。
(程序还不完善,没有对输错的情况进行处理,,暂时先这样吧。。= =。)
#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(struct link)
struct link
{
char ch;
struct link *next;
}*string;
char a[80]={0};
void array()
{
scanf("%s",a);
}
void creat(char *a)
{
int i;
struct link *head,*p;
p=head=(struct link *)malloc(LEN);
for(i=0;i<80;i++)
{
if(*(a+i)!=0)
{
p->ch=*(a+i);
p->next=(struct link *)malloc(LEN);
p=p->next;
}
else
{
p->ch=0;
p->next=NULL;
break;
}
}
string=head;
}
void print(struct link *head)
{
struct link *p;
p=head;
while(p->next!=NULL)
{
printf("%c ",p->ch);
p=p->next;
}
printf("\n");
}
void del(struct link *head)
{
char a[1]={0};
struct link *p1,*p2;
p1=head;
printf("input the char you delete:");
scanf("%s",a);
while(a[0]!=p1->ch&&p1->next!=NULL)
{
p2=p1;
p1=p1->next;
}
if(p1==head)
head=p1->next;
else
p2->next=p1->next;

string=head;
print(head);
}
void add(struct link *head)
{
struct link *p;
char c[1];
printf("input the char you add:");
scanf("%s",c);
p=head;
while(p->next!=NULL)
p=p->next;
p->ch=c[0];
p->next=(struct link *)malloc(LEN);
p=p->next;
p->ch=0;
p->next=NULL;
print(head);
}
void main()
{
array();
creat(a);
print(string);
del(string);
add(string);
}


相关文档:

C/C++函数参数,传值域传址!!!

/*
* File: main.cpp
* Author: Vicky
*
* Created on 2010年5月8日, 下午2:47
*/
#include <iostream>
using namespace std;
void swap(int x, int y) {
cout << "x and y swap before : " << x << "\t" << y << endl;
int i = x;
x = y;
y = i; ......

c 宏定义

关于#和##在C语言的宏中,#的功能是将其后面的宏参数进行字符串化操作(Stringfication),简单说就是在对它所引用的宏变量通过替换后在其左右各加上一个双引号。比如下面代码中的宏:
#define WARN_IF(EXP)     \
     do{ if (EXP)     \
  & ......

[转]C/C++的64位整型

Technorati 标签: C++ 原文地址:http://www.byvoid.com/blog/c-int64/ 在C/C++中,64为整型一直是一种没有确定规范的数据类型。现今主流的编译器中,对64为整型的支持也是标准不一,形态各异。一般来说,64位整型的定义方式有long long和__int64两种(VC还支持_int64),而输出到标准输出方式有printf(“%lld”,a),printf ......

C指针之美一:神奇的函数

void mystery(int n)
{
 n += 5;
 n /= 10;
 printf(" :%s\n","***********" + 10 -n);
}
当一个字符串常量位于一个表达式中时,它的值是一个指针常量。编译器把这些指定字符的一份拷贝存储在内存的某个位置,并存储一个指向第1个字符的指针。但是,当数组名用于表达式中时,他们的值也是一个指针常量 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号