首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
cs11_c++_lab2
】的更多相关文章
cs11_c++_lab2
Matrix.hh class Matrix { int row; int col; int *p; public: Matrix(); Matrix(int x,int y); ~Matrix(); Matrix(Matrix &m); int getrows(); int getcols(); void setelem(int x,int y,int elem); int getelem(int x,int y); void add(Matrix &m); void subtract(…
cs11_c++_lab7
wcount.cc #include <iostream> #include <map> #include <string> #include <algorithm> #include <ctype.h> // So we don't have to type "std::" everywhere... using namespace std; string processWord(string &word); voi…
cs11_c++_lab6
expressions.hh #ifndef EXPRESSIONS_HH #define EXPRESSIONS_HH #include "environment.hh" #include <string> #include <stdexcept> #include <cassert> #include <cmath> using namespace std; class Expression { public: Expression(…
cs11_c++_lab5待修改
heap.hh #ifndef HEAP_HH #define HEAP_HH #include <iostream> #include <stdexcept> #include <cassert> using namespace std; template <typename T, int maxsize>class heap//模板类heap,类型T,常量maxsize { private: int num_values;//当前存储的元素的数量 T v…
cs11_c++_lab4b
SparseVector.hh class SparseVector { private: //结构体不一定会用到,不用初始化 struct node { int index; int value; node *next; node() : index(index), value(value), next(next) {} }; //这些才是真正的数据成员,要初始化的 int size; node *start; void clear(); void copyList(const SparseV…
cs11_c++_lab4a
SparseVector.hh class SparseVector { private: //结构体不一定会用到,不用初始化 struct node { int index; int value; node *next; node() : index(index), value(value), next(next) {} }; //这些才是真正的数据成员,要初始化的 int size; node *start; void clear(); void copyList(const SparseV…
cs11_c++_lab3
Matrix.hh class Matrix { int row; int col; int *p; void copy(const Matrix &m); void clearup(); public: Matrix(); Matrix(int x,int y); ~Matrix(); Matrix(const Matrix &m); const int getrows() const; const int getcols() const; void setelem(int x,int…
cs11_c++_lab1
lab1.cpp #include "Point.hh" #include <iostream> #include <cmath> using namespace std; double computeArea(Point &a, Point &b, Point &c) { double x=a.distanceTo(b); double y=b.distanceTo(c); double z=c.distanceTo(a); ; dou…
Jquery实现自动生成二级目录
在博客园开通博客以后,就看到某位博友写的js自动生成目录的文章,当时觉得生成目录能给阅读带来方便,所以就直接拿来使用了.用了一段时间以后,发现只能生成一级目录,不能生成多级目录,有点美中不足.所以想着自己修改一下代码,实现二级目录甚至三级目录.先附上初始的代码,并且在这感谢那位博友. 1.一级目录代码 <script language="javascript" type="text/javascript"> //生成目录索引列表 function Gen…
导出目录的JS代码,与目录的三级标题测试
二级标题 三级标题 三级标题 三级标题 三级标题 三级标题 二级标题 三级标题 三级标题 三级标题 三级标题 三级标题 这里是现在页尾目录功能的代码源码: <!-- 目录索引列表生成 --> <script language="javascript" type="text/javascript"> function GenerateContentList() { if ($('#cnblogs_post_body').length == 0)…