摘要:
用链表实现vector的一些功能,部分代码如下,以后还要修改,现在先做一个修正// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN sizeof(struct No... 阅读全文
摘要:
用链表实现vector的一些功能,部分代码如下,以后还要修改,现在先做一个修正// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN ... 阅读全文
摘要:
我的理论是,链表的head也可以为node类型,写了一些代码,记录如下// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN sizeof(struct Node)s... 阅读全文
摘要:
我的理论是,链表的head也可以为node类型,写了一些代码,记录如下// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN size... 阅读全文
摘要:
链表是面试中常考的类型,因为只有几行就可以了。下面是一些链表代码// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN sizeof(struct Node)stru... 阅读全文
摘要:
链表是面试中常考的类型,因为只有几行就可以了。下面是一些链表代码// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define NULL 0#define LEN sizeof(... 阅读全文
摘要:
算法时间复杂度大概是某个主要步骤重复的次数,而不是时间。比如冒泡算法的时间复杂度为o(n^2) 阅读全文
摘要:
算法时间复杂度大概是某个主要步骤重复的次数,而不是时间。比如冒泡算法的时间复杂度为o(n^2) 阅读全文
摘要:
通常面试的时候先让你来个冒泡算法,背下来就行吧// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"void bubble_sort(int a[],int n){ int i,j,tmp; for(j = 0;jvoid InsertionSort(... 阅读全文
摘要:
通常面试的时候先让你来个冒泡算法,背下来就行吧// keshan.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"void bubble_sort(int a[],int n){ int i,j,tmp; for(j = 0;jvoi... 阅读全文
摘要:
我现在用到的主要有两个,准确率和ROC,似乎召回率和ACU也很重要。准确率、召回率ROC、ACU 图1 准确率和召回率 图2 ROC参考文献【1】... 阅读全文
摘要:
我现在用到的主要有两个,准确率和ROC,似乎召回率和ACU也很重要。准确率、召回率ROC、ACU 图1 准确率和召回率 ... 阅读全文