浅滩


私信TA

用户名:bob2048

访问量:19107

签 名:

人傻就该多读书

等  级
排  名 584
经  验 4282
参赛次数 4
文章发表 32
年  龄 0
在职情况 学生
学  校
专  业 计算机科学与技术

  自我简介:

烦死了

TA的其他文章

#include<stdio.h>
#include<stdlib.h>
void array_sequence()//顺序存储(数组)逆序的函数
{
 int len,i,j;
scanf("%d",&len);
int *arrary = new int [len];
for(i=0;i<len;i++)
scanf("%d",&arrary[i]);
j = len-1;
for(i=0;i<len/2;j--,i++)
{
arrary[i] = arrary[i] + arrary[j];
arrary[j] = arrary[i] - arrary[j];
arrary[i] = arrary[i] - arrary[j];
}
for(i=0;i<len;i++)
printf("%d\t",arrary[i]);
delete(arrary);
}
typedef struct stu{
int data;
struct stu *next;
}st;
st *init_list()
{
st *head;
head = (st *)malloc(sizeof(st));
head->next = NULL;
return head;
}
st *create()
{
int n,x;
st *head,*r,*s;
head = init_list();
r = head;
printf("请输入元素个数:");
scanf("%d",&n);
while(n)
{
s = (st *)malloc(sizeof(st));
scanf("%d",&x);
s->data = x;
s->next = r->next;
r->next = s;
r = s;
n--;
} 
return head;
}
st *list_sequence(st *head)//链表逆序 
{
st *p,*q;
p = head->next;
head->next = NULL;//置为空表 
while(p)
{
q = p;
p = p->next;
q->next = head->next;//类似于头插 
head->next = q;
} 
 return head;
}  
main()
{
st *head,*p;
head = create();
head = list_sequence(head);
p = head->next;
while(p)
{
printf("%d ",p->data);
p = p->next;
}
 
}


 

0.0分

1 人评分

  评论区

  • «
  • »