代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/358682/10182157
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/358412/10189541
obj binary.obj
www.eeworm.com/read/358412/10189560
c binary.c
www.eeworm.com/read/358412/10189595
exe binary.exe
www.eeworm.com/read/358191/10194310
cpp binary.cpp
// test binary tree class
#include
#include "binary.h"
// globals
int count = 0;
BinaryTree a,x,y,z;
template
void ct(BinaryTreeNode *t) {count++;}
void m
www.eeworm.com/read/358191/10194434
out binary.out
Preorder sequence is 4 3 1 2
Inorder sequence is 1 3 2 4
Postorder sequence is 1 2 3 4
Level order sequence is 4 3 1 2
Number of nodes = 4
Height = 3
Count of nodes is 4
www.eeworm.com/read/358191/10194562
h binary.h
// file binary.h
// LevelOrder and the private recursive PreOrder,
// InOrder, and PostOrder mthods have been changed
// from template functions to integer functions because
// Visual C++ is u
www.eeworm.com/read/356874/10219843
c binary.c
/* binary.c -- prints integer in binary form */
#include
void to_binary(unsigned long n);
int main(void)
{
unsigned long number;
printf("Enter an integer (q to quit):\n");
www.eeworm.com/read/355767/10244345
c binary.c
www.eeworm.com/read/355030/10300259
cpp binary.cpp
//: C12:Binary.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading binary operators
#in