赞
踩
数据结构初阶用C语言实现。
数据结构就是在内存中管理数据。
- #include <stdio.h>
- int main()
- {
- void Func1(int N)
- {
- int count = 0;
- for (int i = 0; i < N; ++i)
- {
- for (int j = 0; j < N; ++j)
- {
- ++count;
- }
- }
-
- for (int k = 0; k < 2 * N; ++k)
- {
- ++count;
- }
- int M = 10;
- while (M--)
- {
- ++count;
- }
- printf("%d\n", count);
- }
- return 0;
- }
- #include <stdio.h>
- int main()
- {
- int count = 0;
- for (int k = 0; k < 100; ++k);
- {
- ++count;
- }
- printf("%d\n", count);
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。