doubly-linked-list-typed
Version:
Doubly Linked List
9 lines (8 loc) • 339 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DFSOperation = void 0;
var DFSOperation;
(function (DFSOperation) {
DFSOperation[DFSOperation["VISIT"] = 0] = "VISIT";
DFSOperation[DFSOperation["PROCESS"] = 1] = "PROCESS";
})(DFSOperation = exports.DFSOperation || (exports.DFSOperation = {}));
;