当前位置:七七学习网文档大全求职指南求职笔试面试笔试题目SAP笔试试题» 正文

SAP笔试试题

[10-10 21:21:19]   来源:http://www.77xue.com  笔试题目   阅读:8280
概要:1.Below is usual way we find one element in an array:const int *find1(const int* array, int n, int x){const int* p = array;for(int i = 0; i < n; i++){if(*p == x){return p;}++p;}return 0;}In this case we have to bear the knowledge of value type "int", the size ofarray,even the existence of an array. Would you re-write it using template to eliminate allthese dependencies?2. Assume you have a class likeclass erp{HR* m_hr;FI* m_fi;public
SAP笔试试题,标签:驾照笔试题目,腾讯笔试题目,http://www.77xue.com

  1.Below is usual way we find one element in an array:

  const int *find1(const int* array, int n, int x)

  {

  const int* p = array;

  for(int i = 0; i < n; i++)

  {

  if(*p == x)

  {

  return p;

  }

  ++p;

  }

  return 0;

  }

  In this case we have to bear the knowledge of value type "int", the size of

  array,

  even the existence of an array. Would you re-write it using template to elim

  inate all

  these dependencies?

  2. Assume you have a class like

  class erp

  {

  HR* m_hr;

  FI* m_fi;

  public:

  erp()

  {

  m_hr = new HR();

  m_fi = new FI();

  }

  ~erp()

  {

  }

  };

  if "new FI()" failed in the constructor, how can you detect this problem and

  release the

  properly allocated member pointer m_hr?

  3. Check the class and variable definition below:

  #include

  #include

  using namespace std;

  class Base

  {

  public:

  Base() { cout<<"Base-ctor"< ~Base() { cout<<"Base-dtor"< virtual void f(int) { cout<<"Base::f(int)"< virtual void f(double) {cout<<"Base::f(double)"< virtual void g(int i = 10) {cout<<"Base::g()"<};

  class Derived: public Base

  {

  public:

  Derived() { cout<<"Derived-ctor"< ~Derived() { cout<<"Derived-dtor"< void f(complex) { cout<<"Derived::f(complex)"< virtual void g(int i = 20) {cout<<"Derived::g()"<};

  Base b;

  Derived d;

  Base* pb = new Derived;

  Select the correct one from the four choices:

  Cout

  Cout

  pb->f(1.0);

  A.Derived::f(complex) B.Base::f(double)

  pb->g();

  A.Base::g() 10 B.Base::g() 20

  C.Derived::g() 10 D.Derived::g() 20

  4.Implement the simplest singleton pattern(initialize if if necessary).

  5.Name three sort algorithms you are familiar with. Write out the correct or

  der by the

  average time complexity.

  6.Write code to sort a duplex direction linklist. The node T has overridden

  the comparision operators


Tag:笔试题目驾照笔试题目,腾讯笔试题目求职指南 - 求职笔试面试 - 笔试题目

《SAP笔试试题》相关文章

联系我们 | 网站地图 | 范文大全 | 管理知识 | 教学教育 | 作文大全 | 语句好词
Copyright http://www.77xue.com--(七七学习网) All Right Reserved.
1 2 3 4 5 6 7 8 9 10