首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Administraor的代码贴全部
/*
 * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)
 * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
......................
阅读全部 | 2019年3月23日 20:25
/*
 * Copyright (c) 1999 - 2005 NetGroup, Politecnico di Torino (Italy)
 * Copyright (c) 2005 - 2006 CACE Technologies, Davis (California)
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
......................
阅读全部 | 2019年3月23日 19:56
/*
给数的结点增加一个访问次数(visit)属性
遍历左子树,依次入栈
到底后出栈一个元素,判断访问次数是否为2
若不是,则访问次数为1,访问次数+1,再次入栈,T指向右子树(访问右子树),进入下次循环
若是,则输出,T指向空(左右子树都访问了),进入下次循环
*/
 void PostOrderTraversal(BinTree BT)
{
    BinTree T BT;
    Stack S=CreatStack(Maxsize);
    while(T||!IsEmpty(s)){
......................
阅读全部 | 2018年9月22日 20:13
#include <stdio.h>
#include <string.h>
typedef struct{
int x,y;
}result;


result cal(char a[]){   //没有考虑一个是小数,一个是整数这种情况 
int i,j;
result tmp;

for(i=0;a[i] != '.';i++);
......................
阅读全部 | 2018年9月5日 15:59
1
Administraor