2008秋季-计算机软件基础-有序表合并 教材 P79, ex3
/* Author: Eman Lee */
/*计算机软件基础 教材 P79, ex3*/
#include <stdio.h>
#include <stdlib.h>
int insert(int a[],int arrayLength,int *listLength,int x)
{
int i,j;
if(*listLength+1==arrayLength)
return 0;/*fail*/
for(i=0;i<*listLength;i++)
{
if(a[i]>=x)/*search successfully*/
{
for(j=*listLength;j>i;j--)
a[j]=a[j-1];/*move*/
a[i]=x;
(*listLength)++;
return 1;/*success*/
}
}
(*listLength)++;
a[i]=x;
return 1;/*success*/
}
void show(int a[],int listLength)
{
int i;
for(i=0;i<listLength;i++)
printf(" %d ",a[i]);
}
void main()
{
int a1[100]={1,3,5,7,9};
int a2[100]={0,2,4,6,8,10};
int listLength=5;
int listLength2=6;
int i;
for(i=0;i<listLength2;i++)
insert(a1,100,&listLength,a2[i]);
show(a1,listLength);
getchar();
}
/*计算机软件基础 教材 P79, ex3*/
#include <stdio.h>
#include <stdlib.h>
int insert(int a[],int arrayLength,int *listLength,int x)
{
int i,j;
if(*listLength+1==arrayLength)
return 0;/*fail*/
for(i=0;i<*listLength;i++)
{
if(a[i]>=x)/*search successfully*/
{
for(j=*listLength;j>i;j--)
a[j]=a[j-1];/*move*/
a[i]=x;
(*listLength)++;
return 1;/*success*/
}
}
(*listLength)++;
a[i]=x;
return 1;/*success*/
}
void show(int a[],int listLength)
{
int i;
for(i=0;i<listLength;i++)
printf(" %d ",a[i]);
}
void main()
{
int a1[100]={1,3,5,7,9};
int a2[100]={0,2,4,6,8,10};
int listLength=5;
int listLength2=6;
int i;
for(i=0;i<listLength2;i++)
insert(a1,100,&listLength,a2[i]);
show(a1,listLength);
getchar();
}
分类:
[18] 数据结构与算法
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 一个奇形怪状的面试题:Bean中的CHM要不要加volatile?
· [.NET]调用本地 Deepseek 模型
· Blazor Hybrid适配到HarmonyOS系统
· Obsidian + DeepSeek:免费 AI 助力你的知识管理,让你的笔记飞起来!
· 解决跨域问题的这6种方案,真香!
· 一套基于 Material Design 规范实现的 Blazor 和 Razor 通用组件库
· 分享4款.NET开源、免费、实用的商城系统