免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: yzc2002
打印 上一主题 下一主题

[算法] 一个算法题,应该有很多种方法可以得到结果 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2006-05-09 13:50 |只看该作者
楼主的算法很复杂,看不懂啊,希望能够更详细的解释,新手在此谢过了

论坛徽章:
0
12 [报告]
发表于 2006-05-09 14:05 |只看该作者
首先声明,我是新手,楼主的两个程序在我的电脑上都有错误

第一个,编译失败

  1. [yms@hk-vas idea1]$ gcc c_test.cpp
  2. /tmp/ccLWexkY.o(.text+0x96): In function `main':
  3. : undefined reference to `log'
  4. /tmp/ccLWexkY.o(.text+0xab): In function `main':
  5. : undefined reference to `log'
  6. /tmp/ccLWexkY.o(.text+0xfa): In function `main':
  7. : undefined reference to `log'
  8. /tmp/ccLWexkY.o(.text+0x10f): In function `main':
  9. : undefined reference to `log'
  10. /tmp/ccLWexkY.o(.text+0x17f): In function `main':
  11. : undefined reference to `log'
  12. /tmp/ccLWexkY.o(.text+0x197): more undefined references to `log' follow
  13. /tmp/ccLWexkY.o(.text+0x28f): In function `main':
  14. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char,
  15. std::char_traits<char> >&)'
  16. /tmp/ccLWexkY.o(.text+0x2aa): In function `main':
  17. : undefined reference to `std::cout'
  18. /tmp/ccLWexkY.o(.text+0x2af): In function `main':
  19. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(int)'
  20. /tmp/ccLWexkY.o(.text+0x2b8): In function `main':
  21. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))'
  22. /tmp/ccLWexkY.o(.text+0x31c): In function `__static_initialization_and_destruction_0(int, int)':
  23. : undefined reference to `std::ios_base::Init::Init[in-charge]()'
  24. /tmp/ccLWexkY.o(.text+0x34b): In function `__tcf_0':
  25. : undefined reference to `std::ios_base::Init::~Init [in-charge]()'
  26. /tmp/ccLWexkY.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1a0): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  27. : undefined reference to `__cxa_begin_catch'
  28. /tmp/ccLWexkY.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1dd): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  29. : undefined reference to `__cxa_rethrow'
  30. /tmp/ccLWexkY.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1e8): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  31. : undefined reference to `__cxa_end_catch'
  32. /tmp/ccLWexkY.o(.gnu.linkonce.t._ZNSt14__simple_allocIiSt24__default_alloc_templateILb1ELi0EEE10deallocateEPij+0x1a): In function `std::__simple_alloc<int, std::__default_alloc_template<(bool)1, (int)0> >::deallocate(int*, unsigned)':
  33. : undefined reference to `std::__default_alloc_template<(bool)1, (int)0>::deallocate(void*, unsigned)'
  34. /tmp/ccLWexkY.o(.gnu.linkonce.t._ZNSt14__simple_allocIiSt24__default_alloc_templateILb1ELi0EEE8allocateEj+0x1e): In function `std::__simple_alloc<int, std::__default_alloc_template<(bool)1, (int)0> >::allocate(unsigned)':
  35. : undefined reference to `std::__default_alloc_template<(bool)1, (int)0>::allocate(unsigned)'
  36. /tmp/ccLWexkY.o(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
  37. collect2: ld returned 1 exit status

复制代码


第二个,运行时出错:


  1. [yms@hk-vas idea2]$ time ./a.out
  2. 1
  3. 段错误

  4. real    0m0.081s
  5. user    0m0.000s
  6. sys     0m0.000s

复制代码

论坛徽章:
0
13 [报告]
发表于 2006-05-09 14:06 |只看该作者
我看不懂是什么错,请指教

论坛徽章:
0
14 [报告]
发表于 2006-05-09 14:08 |只看该作者
第一个gcc c_test.cpp -lm
第二个time ./a.out 1500

论坛徽章:
0
15 [报告]
发表于 2006-05-09 14:16 |只看该作者
谢谢回复,但是还是有错,是不是我的系统有问题??

  1. [yms@hk-vas idea1]$ gcc c_test.cpp -lm
  2. /tmp/ccrAS0Wq.o(.text+0x28f): In function `main':
  3. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char,
  4. std::char_traits<char> >&)'
  5. /tmp/ccrAS0Wq.o(.text+0x2aa): In function `main':
  6. : undefined reference to `std::cout'
  7. /tmp/ccrAS0Wq.o(.text+0x2af): In function `main':
  8. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(int)'
  9. /tmp/ccrAS0Wq.o(.text+0x2b8): In function `main':
  10. : undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))'
  11. /tmp/ccrAS0Wq.o(.text+0x31c): In function `__static_initialization_and_destruction_0(int, int)':
  12. : undefined reference to `std::ios_base::Init::Init[in-charge]()'
  13. /tmp/ccrAS0Wq.o(.text+0x34b): In function `__tcf_0':
  14. : undefined reference to `std::ios_base::Init::~Init [in-charge]()'
  15. /tmp/ccrAS0Wq.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1a0): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  16. : undefined reference to `__cxa_begin_catch'
  17. /tmp/ccrAS0Wq.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1dd): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  18. : undefined reference to `__cxa_rethrow'
  19. /tmp/ccrAS0Wq.o(.gnu.linkonce.t._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi+0x1e8): In function `std::vector<int, std::allocator<int> >::_M_insert_aux(__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >, int const&)':
  20. : undefined reference to `__cxa_end_catch'
  21. /tmp/ccrAS0Wq.o(.gnu.linkonce.t._ZNSt14__simple_allocIiSt24__default_alloc_templateILb1ELi0EEE10deallocateEPij+0x1a): In function `std::__simple_alloc<int, std::__default_alloc_template<(bool)1, (int)0> >::deallocate(int*, unsigned)':
  22. : undefined reference to `std::__default_alloc_template<(bool)1, (int)0>::deallocate(void*, unsigned)'
  23. /tmp/ccrAS0Wq.o(.gnu.linkonce.t._ZNSt14__simple_allocIiSt24__default_alloc_templateILb1ELi0EEE8allocateEj+0x1e): In function `std::__simple_alloc<int, std::__default_alloc_template<(bool)1, (int)0> >::allocate(unsigned)':
  24. : undefined reference to `std::__default_alloc_template<(bool)1, (int)0>::allocate(unsigned)'
  25. /tmp/ccrAS0Wq.o(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
  26. collect2: ld returned 1 exit status
复制代码



能否顺便解释一下 选项 "-lm" 的含义 ?

论坛徽章:
0
16 [报告]
发表于 2006-05-09 14:18 |只看该作者
第一个是个C++程序,用g++ c_test.cpp -lm
-lm是链接数学函数库

论坛徽章:
0
17 [报告]
发表于 2006-05-09 14:32 |只看该作者
LZ的两个程序运行结果不一样啊。

论坛徽章:
0
18 [报告]
发表于 2006-05-09 14:33 |只看该作者
LZ的两个程序运行结果不一样啊。

论坛徽章:
0
19 [报告]
发表于 2006-05-09 14:56 |只看该作者
第一个可能溢出了
改为long long就可以了

论坛徽章:
0
20 [报告]
发表于 2006-05-09 16:01 |只看该作者
原帖由 win_hate 于 2006-5-9 10:54 发表
动态编程,设已经求出一个初始序列,用 2 乘之能得到 含 2^x3^y5^z 形式的元素(x>0);用 3 乘其中不含 2 的元素能得到 3^y5^z 形式的元素(y>0);用 5 乘其中 5 的方幂能到 5^z 形式的元素(z>0)。只要 ...

还是你的这个好,我想得太复杂了~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP