Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
exe.c
Package: Cyuyanyuandaima.rar [view]
Upload User: wctdlqt
Upload Date: 2021-05-26
Package Size: 40k
Code Size: 1k
Category:
Compress-Decompress algrithms
Development Platform:
Visual C++
- #include "stdio.h"
- #include "malloc.h"
- void Init(int *a,int n)
- {int i,*q=a;
- for(i=0;i<n;i++)
- scanf("%d",q++);
- }
- int Found_q(int *a,int n,int key)
- {int *q,count=1;
- for(q=a;q<=a+n-1;q++)
- if(*q==key) break;
- else count++;
- if(q>a+n-1) return -1;
- return count;
- }
- void sort(int *a,int n)
- {int t,*q,*p;
- for(p=a;p<a+n-1;p++)
- for(q=p+1;q<=a+n-1;q++)
- if(*p>*q) {t=*p;*p=*q;*q=t;}
- }
- void Display(int *p,int n)
- {
- int *q=p;
- while(q<=p+n-1)
- {printf("%4d",*q);
- q++;
- }
- }
- void main()
- {int k,*p,n;
- printf("The length:");
- scanf("%d",&n);
- p=calloc(n,sizeof(int));
- Init(p,n);
- scanf("%d",&k);
- printf("=======%dn",Found_q(p,n,k));
- Display(p,n);
- sort(p,n);
- printf("n++++++++++n");
- Display(p,n);
- printf("n");
- }