/** * Depth-first search and postorder of a tree rooted at node j * * @param {Number} j The tree node * @param {Number} k * @param {Array} w The workspace array * @param {Number} head The index offset within the workspace for the head array * @param {Number} next The index offset within the workspace for the next array * @param {Array} post The post ordering array * @param {Number} stack The index offset within the workspace for the stack array */ export declare function csTdfs(j: number, k: number, w: number[], head: number, next: number, post: number[], stack: number): number; //# sourceMappingURL=csTdfs.d.ts.map