| 300 | 400 | 500 | 700 | |
|---|---|---|---|---|
| 0 | 2 | 1 | ||
| 10 | 1 | 1 | ||
| 20 | 1 | |||
| 30 | 1 | 1 | 1 | |
| 40 | ||||
| 50 | 1 | 3 | ||
| 60 | 1 | 2 | ||
| 70 | 1 | 1 | ||
| 80 | 1 | 2 | ||
| 90 | 1 | 1 | ||
| Totals | 6 | 10 | 6 | 1 |
Statistics derived from all files ending in .cc, .cpp,
.CC, .C, and .h.
| 100 | 200 | 300 | |
|---|---|---|---|
| 0 | 2 | ||
| 10 | 1 | 1 | 1 |
| 20 | 2 | ||
| 30 | 1 | ||
| 40 | 6 | ||
| 50 | 4 | ||
| 60 | 3 | ||
| 70 | |||
| 80 | |||
| 90 | 2 | ||
| Totals | 19 | 3 | 1 |
Statistics derived from all files ending in .cc, .cpp,
.CC, .C, and .h.
| total | pages per procedure | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| procs | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 1 | 1 | ||||||||||||
| 2 | 1 | 1 | |||||||||||
| 7 | 2 | 3 | 2 | ||||||||||
| 8 | 7 | 1 | |||||||||||
| 10 | 4 | 3 | 3 | ||||||||||
| 10 | 6 | 3 | 1 | ||||||||||
| 10 | 7 | 3 | |||||||||||
| 11 | 8 | 2 | 1 | ||||||||||
| 13 | 10 | 3 | |||||||||||
| 14 | 10 | 4 | |||||||||||
| 14 | 12 | 2 | |||||||||||
| 17 | 15 | 1 | 1 | ||||||||||
| 18 | 17 | 1 | |||||||||||
| 19 | 18 | 1 | |||||||||||
| 20 | 18 | 2 | |||||||||||
| 23 | 20 | 3 | |||||||||||
| 25 | 24 | 1 | |||||||||||
| 31 | 31 | ||||||||||||
Statistics derived from all files ending in .cc, .cpp,
.CC, .C, and .h.
| File Counts | Count | Average Lines/File | Avg Semicolons per File |
|---|---|---|---|
| 1 | 11 | 438 | 167 |
| 2 | 1 | 246 | 57 |
| 3 | 4 | 144 | 47 |
| 4 | 1 | 122 | 49 |
| 5 | 1 | 82 | 29 |
| 6 | 3 | 88 | 35 |
| 7 | 1 | 82 | 22 |
| 8 | 0 | ||
| 9 | 0 | ||
| 10 | 0 | ||
| 11 | 1 | 48 | 14 |
Statistics derived from all files ending in .cc, .cpp,
.CC, .C, and .h.
void remove_edge( map<string, Command> & graph, stack<Command> & undo_stack, stack<Command> & redo_stack, Command v);
while (getline(cin, graphline)) {
if (cin.eof()) break;
// whatever
}
// main function
int main() {
// main
int main() {
// main function
int main(int args, char* argv[]) {
static bool read_cmd(std::istream & is, cmd & c) {
// Read the next command from is and store it in c.
class Node {
friend class ListInt;
private:
char* label;
Node* next;
int label_length;
public:
Node();
Node(const Node& p);
Node(char* p, Node* ptr);
void set_label(char*,Node*);
char* get_label() const;
Node* get_next() const;
void display_node() const;
};
Node::Node(const Node& p) {
assert(p.get_label() != NULL);
label = new char[strlen(p.get_label()) + 1];
label = '\0';
strcpy(label, p.get_label());
next = p.get_next();
}
#defines.
#define NODE "node" #define EDGE "edge" #define UNDO "undo" #define REDO "redo"
consts instead.
const char * NODE = "node"; const char * EDGE = "edge"; const char * UNDO = "undo"; const char * REDO = "redo";
This page last modified on 14 December 2001.