<< Chapter < Page Chapter >> Page >

ptr + j chỉ đến phần tử thứ j sau a[i], tức a[i+j]

ptr - j chỉ đến phần tử đứng trước a[i], tức a[i-j]

Ví dụ: Giả sử có 1 mảng mang_int, cho con trỏ contro_int chỉ đến phần tử thứ 5 trong mảng. In ra các phần tử của contro_int&mang_int.

#include<stdio.h>

#include<conio.h>

#include<alloc.h>

int main()

{

int i,mang_int[10];

int *contro_int;

clrscr();

for(i=0;i<=9;i++)

mang_int[i]=i*2;

contro_int=&mang_int[5];

printf("\nNoi dung cua mang_int ban dau=");

for (i=0;i<=9;i++)

printf("%d ",mang_int[i]);

printf("\nNoi dung cua contro_int ban dau =");

for (i=0;i<5;i++)

printf("%d ",contro_int[i]);

for(i=0;i<5;i++)

contro_int[i]++;

printf("\n--------------------------------------------------------");

printf("\nNoi dung cua mang_int sau khi tang 1=");

for (i=0;i<=9;i++)

printf("%d ",mang_int[i]);

printf("\nNoi dung cua contro_int sau khi tang 1=");

for (i=0;i<5;i++)

printf("%d ",contro_int[i]);

if (contro_int!=NULL)

free(contro_int);

getch();

return 0;

}

Kết quả chương trình

Con trỏ và mảng nhiều chiều

Ta có thể sử dụng con trỏ thay cho mảng nhiều chiều như sau:

Giả sử ta có mảng 2 chiều và biến con trỏ như sau:

int a[n][m];

int *contro_int;

Thực hiện phép gán contro_int=a;

Khi đó phần tử a[0][0]được quản lý bởi contro_int;

a[0][1]được quản lý bởi contro_int+1;

a[0][2]được quản lý bởi contro_int+2;

...

a[1][0]được quản lý bởi contro_int+m;

a[1][1]được quản lý bởi contro_int+m+1;

...

a[n][m]được quản lý bởi contro_int+n*m;

Tương tự như thế đối với mảng nhiều hơn 2 chiều.

Ví dụ: Sự tương đương giữa mảng 2 chiều và con trỏ.

#include<stdio.h>

#include<conio.h>

#include<alloc.h>

int main()

{

int i,j;

int mang_int[4][5]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,

15,16,17,18,19,20};

int *contro_int;

clrscr();

contro_int=(int*)mang_int;

printf("\nNoi dung cua mang_int ban dau=");

for (i=0;i<4;i++)

{

printf("\n");

for (j=0;j<5;j++)

printf("%d\t",mang_int[i][j]);

}

printf("\n---------------------------------");

printf("\nNoi dung cua contro_int ban dau \n");

for (i=0;i<20;i++)

printf("%d ",contro_int[i]);

for(i=0;i<20;i++)

contro_int[i]++;

printf("\n--------------------------------------------------------");

printf("\nNoi dung cua mang_int sau khi tang 1=");

for (i=0;i<4;i++)

{

printf("\n");

for (j=0;j<5;j++)

printf("%d\t",mang_int[i][j]);

}

printf("\nNoi dung cua contro_int sau khi tang 1=\n");

for (i=0;i<20;i++)

printf("%d ",contro_int[i]);

if (contro_int!=NULL)

free(contro_int);

getch();

return 0;

}

Kết quả thực hiện chương trình như sau:

***SORRY, THIS MEDIA TYPE IS NOT SUPPORTED.***

Con trỏ và tham số hình thức của hàm

Khi tham số hình thức của hàm là một con trỏ thì theo nguyên tắc gọi hàm ta dùng tham số thực tế là 1 con trỏ có kiểu giống với kiểu của tham số hình thức. Nếu lúc thực thi hàm ta có sự thay đổi trên nội dung vùng nhớ được chỉ bởi con trỏ tham số hình thức thì lúc đó nội dung vùng nhớ được chỉ bởi tham số thực tế cũng sẽ bị thay đổi theo.

Ví dụ : Xét hàm hoán vị được viết như sau :

#include<stdio.h>

#include<conio.h>

void HoanVi(int *a, int *b)

{

int c=*a;

*a=*b;

*b=c;

}

int main()

{

int m=20,n=30;

clrscr();

printf("Truoc khi goi ham m= %d, n= %d\n",m,n);

HoanVi(&m,&n);

printf("Sau khi goi ham m= %d, n= %d",m,n);

getch();

return 0;

}

Kết quả thực thi chương trình:

M=20n=30&M&Nm=20n=30abm=30n=20&M&Nm=30n=20&M&Ntrước khi gọi hàmkhi gọi hàmsau khi gọi hàm:

A=&M; b=&N; con trỏ a, b bị giải phóng

Lúc này : *a=m; *b=n; m, n đã thay đổi:

Đổi chỗ ta được :

*a=m=30; *b=n=20;

Bài tập

Mục tiêu

Tiếp cận với một kiểu dữ liệu rất mạnh trong C là kiểu con trỏ. Từ đó, sinh viên có thể xây dựng các ứng dụng bằng cách sử dụng cấp phát động thông qua biến con trỏ.

Nội dung

Thực hiện các bài tập ở chương trước (chương VI : Kiểu mảng) bằng cách sử dụng con trỏ.

Questions & Answers

A golfer on a fairway is 70 m away from the green, which sits below the level of the fairway by 20 m. If the golfer hits the ball at an angle of 40° with an initial speed of 20 m/s, how close to the green does she come?
Aislinn Reply
cm
tijani
what is titration
John Reply
what is physics
Siyaka Reply
A mouse of mass 200 g falls 100 m down a vertical mine shaft and lands at the bottom with a speed of 8.0 m/s. During its fall, how much work is done on the mouse by air resistance
Jude Reply
Can you compute that for me. Ty
Jude
what is the dimension formula of energy?
David Reply
what is viscosity?
David
what is inorganic
emma Reply
what is chemistry
Youesf Reply
what is inorganic
emma
Chemistry is a branch of science that deals with the study of matter,it composition,it structure and the changes it undergoes
Adjei
please, I'm a physics student and I need help in physics
Adjanou
chemistry could also be understood like the sexual attraction/repulsion of the male and female elements. the reaction varies depending on the energy differences of each given gender. + masculine -female.
Pedro
A ball is thrown straight up.it passes a 2.0m high window 7.50 m off the ground on it path up and takes 1.30 s to go past the window.what was the ball initial velocity
Krampah Reply
2. A sled plus passenger with total mass 50 kg is pulled 20 m across the snow (0.20) at constant velocity by a force directed 25° above the horizontal. Calculate (a) the work of the applied force, (b) the work of friction, and (c) the total work.
Sahid Reply
you have been hired as an espert witness in a court case involving an automobile accident. the accident involved car A of mass 1500kg which crashed into stationary car B of mass 1100kg. the driver of car A applied his brakes 15 m before he skidded and crashed into car B. after the collision, car A s
Samuel Reply
can someone explain to me, an ignorant high school student, why the trend of the graph doesn't follow the fact that the higher frequency a sound wave is, the more power it is, hence, making me think the phons output would follow this general trend?
Joseph Reply
Nevermind i just realied that the graph is the phons output for a person with normal hearing and not just the phons output of the sound waves power, I should read the entire thing next time
Joseph
Follow up question, does anyone know where I can find a graph that accuretly depicts the actual relative "power" output of sound over its frequency instead of just humans hearing
Joseph
"Generation of electrical energy from sound energy | IEEE Conference Publication | IEEE Xplore" ***ieeexplore.ieee.org/document/7150687?reload=true
Ryan
what's motion
Maurice Reply
what are the types of wave
Maurice
answer
Magreth
progressive wave
Magreth
hello friend how are you
Muhammad Reply
fine, how about you?
Mohammed
hi
Mujahid
A string is 3.00 m long with a mass of 5.00 g. The string is held taut with a tension of 500.00 N applied to the string. A pulse is sent down the string. How long does it take the pulse to travel the 3.00 m of the string?
yasuo Reply
Who can show me the full solution in this problem?
Reofrir Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Cấu trúc dữ liệu. OpenStax CNX. Jul 29, 2009 Download for free at http://cnx.org/content/col10766/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Cấu trúc dữ liệu' conversation and receive update notifications?

Ask