#include <iostream>
#include <iomanip>
#import “c:\program files\common files\system\ado\msado15.dll” named_guids rename_namespace(“ADOCG”) ren……继续阅读 »
10年前 (2015-11-08) 2019浏览
0个赞
这段代码的功能就是在Jone之前插入marit,可是事实上程序运行起来不是这样子
原题目是在值为“jone”的结点前插入值为”marit“的结点,若没有值为”jone“的结点,则插在链表的最后;
请帮忙看一下本人这个程序错在哪里,谢谢
# include<iostream.h>
struct lianbiao
{
char zifu……继续阅读 »
10年前 (2015-11-08) 1622浏览
0个赞
VMware的提示信息如下:
This host supports Intel VT-x, but Intel VT-x is disabled.
Intel VT-x might be disabled if it has been disabled in the BIOS/firmware settings or the host has not be……继续阅读 »
10年前 (2015-11-08) 1458浏览
0个赞
在研究 ffmpeg中遇到一个函数
void av_freep(void *arg)
{
void *val;
memcpy(&val, arg, sizeof(val));
memcpy(arg, &(void *){ NULL }, sizeof(val)); // 这个语句在gcc编译中能编译,而本人在VS中却无法编译提示错误
a……继续阅读 »
10年前 (2015-11-08) 2357浏览
0个赞
同样还有第5版的习题解答 PDF
解决方案:12分
https://github.com/search?utf8=%E2%9C%93&q=c%2B%2B+primer+5
选择一个你觉得好的
解决方案:11分
CSDN就能搜到~
最新版好像是第六版,加入了c++11的内容。
解决方案:11分
严重顶一下, 老衲也在找这本书, googl……继续阅读 »
10年前 (2015-11-08) 8550浏览
0个赞
杭电oj 1002
本人测试很多数都没问题,提交上去一直是WA,求高手看一下问题在哪
#include <stdio.h>
void cti(char s1[]) // 将char值转换成int值
{
int i,len = strlen(s1);
for ( i = 0; i < len; ++i) {
s1[i] = s1[i……继续阅读 »
10年前 (2015-11-08) 1221浏览
0个赞
问题已经解决了,不好意思,新问题请见1、2楼
//一个计算器
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
int system(const char *string); //清屏的函数声明,包含在stdlib.h
int main ()
{
……继续阅读 »
10年前 (2015-11-08) 1304浏览
0个赞
#include <iostream>
using namespace std;
const int arsize=10;
int array[arsize]={10,25,6,58,97,43,2,3,98,17};
void quicksort(int array[],int i,int j);
int partition(int arra……继续阅读 »
10年前 (2015-11-08) 1271浏览
0个赞
解决方案:10分
遇到过
在debug模式下使用QWebView加载某些网站的时候有你这个问题;
切换到release就没有这个问题了,你可以试下。
解决方案:10分
指针访问错误, 未分配内存
解决方案:20分
崩溃的时候在弹出的对话框按相应按钮进入调试,按Alt+7键查看Call Stack即“调用堆栈”里面从上到下列出的对应从里层到外层的……继续阅读 »
10年前 (2015-11-08) 949浏览
0个赞