Chinaunix首页 | 论坛 | 博客
  • 博客访问: 346193
  • 博文数量: 135
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1106
  • 用 户 组: 普通用户
  • 注册时间: 2013-03-20 09:56
文章分类

全部博文(135)

文章存档

2017年(3)

2016年(18)

2015年(69)

2014年(39)

2013年(6)

我的朋友

发布时间:2015-10-27 14:45:29

char *itoa(int i, char *string){    for (; i > 10; i /= 10)        temp *= 10;    for (; temp > 0; temp /= 10)    {        *string ++ = i/temp + '0';    &nb.........【阅读全文】

阅读(450) | 评论(0) | 转发(0)

发布时间:2015-10-27 14:13:16

void deletelist(struct stu *s, int a){    struct stu *p;        while (s->age != a)    {        p = s;        s = s->next;    }   .........【阅读全文】

阅读(403) | 评论(0) | 转发(0)

发布时间:2015-10-27 12:31:36

struct BTree{    int data;    struct BTree *left;    struct BTree *right;};void *change(BTree *root){    if (root == NULL)        return;    BTree *temp = root->left;  .........【阅读全文】

阅读(376) | 评论(0) | 转发(0)

发布时间:2015-10-27 12:26:00

void upppers(char *s, char *d){    if (s == NULL || d == NULL)        return;    for (; *s != '\0'; s++)    {        if (*s >= 'a' && *s <= 'z')     &nb.........【阅读全文】

阅读(443) | 评论(0) | 转发(0)

发布时间:2015-10-27 11:11:32

typedef struct LNode{    int data;    struct LNode *next;}LNode, *Linklist;Linklist reverselink(Linklist *list){    Linklist newlist;    LNode *tmp;    if (list == NULL || newlist = (LNode *)malloc(sizeof(LNode))).........【阅读全文】

阅读(480) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册