考试题目:1、实现字符串查找功能,不能采用特定语言提供的现成的库函数(Basic, C, C++, Java, Pascal)2、在字符树中查找指定的字符串 (C, C++, Java, Pascal)3、实现行编辑功能,实现在行内对字符的插入(Basic, C, C++, Java, Pascal),删除(Basic),修改功能(Basic,)
4、请写出Windows系统调用的调用格式(Basic),
HWND CreateWindow(
  LPCTSTR lpClassName,  // pointer to registered class name
  LPCTSTR lpWindowName, // pointer to window name
  DWORD dwStyle,        // window style
  int x,                // horizontal position of window
  int y,                // vertical position of window
  int nWidth,           // window width
  int nHeight,          // window height
  HWND hWndParent,      // handle to parent or owner window
  HMENU hMenu,          // handle to menu or child-window identifier
  HANDLE hInstance,     // handle to application instance
  LPVOID lpParam        // pointer to window-creation data
);试写出主线程向子线程发送消息的伪码表示,带两个参数,一个结构指针,一个结构体